Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 52 | #ifdef ACPI_ASL_COMPILER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <acpi/acdisasm.h> |
| 54 | #endif |
| 55 | |
| 56 | #define _COMPONENT ACPI_DISPATCHER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 57 | ACPI_MODULE_NAME("dswload") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | ******************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 72 | acpi_ds_init_callbacks(struct acpi_walk_state *walk_state, u32 pass_number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
| 74 | |
| 75 | switch (pass_number) { |
| 76 | case 1: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 77 | walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 | |
| 78 | ACPI_PARSE_DELETE_TREE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 84 | walk_state->parse_flags = ACPI_PARSE_LOAD_PASS1 | |
| 85 | ACPI_PARSE_DELETE_TREE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | walk_state->parse_flags |= ACPI_PARSE_EXECUTE | |
| 93 | ACPI_PARSE_DELETE_TREE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /******************************************************************************* |
| 107 | * |
| 108 | * FUNCTION: acpi_ds_load1_begin_op |
| 109 | * |
| 110 | * PARAMETERS: walk_state - Current state of the parse tree walk |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 111 | * out_op - Where to return op if a new one is created |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | * |
| 113 | * RETURN: Status |
| 114 | * |
| 115 | * DESCRIPTION: Descending callback used during the loading of ACPI tables. |
| 116 | * |
| 117 | ******************************************************************************/ |
| 118 | |
| 119 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 120 | acpi_ds_load1_begin_op(struct acpi_walk_state * walk_state, |
| 121 | union acpi_parse_object ** out_op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 130 | ACPI_FUNCTION_TRACE("ds_load1_begin_op"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
| 132 | op = walk_state->op; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 133 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op, |
| 134 | walk_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | *out_op = op; |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 141 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | /* Check if this object has already been installed in the namespace */ |
| 145 | |
| 146 | if (op->common.node) { |
| 147 | *out_op = op; |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 148 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | path = acpi_ps_get_next_namestring(&walk_state->parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
| 154 | /* Map the raw opcode into an internal object type */ |
| 155 | |
| 156 | object_type = walk_state->op_info->object_type; |
| 157 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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)); |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 174 | #ifdef ACPI_ASL_COMPILER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } |
| 188 | #endif |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | if (ACPI_FAILURE(status)) { |
| 190 | ACPI_REPORT_NSERROR(path, status); |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 191 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 199 | case ACPI_TYPE_LOCAL_SCOPE: /* Scope */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 219 | * Note: silently change the type here. On the second pass, we will report |
| 220 | * a warning |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | */ |
| 222 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 238 | return_ACPI_STATUS(AE_AML_OPERAND_TYPE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | break; |
| 241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | default: |
| 243 | |
| 244 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 245 | * For all other named opcodes, we will enter the name into |
| 246 | * the namespace. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | flags = ACPI_NS_NO_UPSEARCH; |
| 280 | if ((walk_state->opcode != AML_SCOPE_OP) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 281 | (!(walk_state->parse_flags & ACPI_PARSE_DEFERRED_OP))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | flags |= ACPI_NS_ERROR_IF_FOUND; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | /* |
| 293 | * Enter the named type into the internal namespace. We enter the name |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 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); |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 304 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } |
| 306 | break; |
| 307 | } |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* Common exit */ |
| 310 | |
| 311 | if (!op) { |
| 312 | /* Create a new op */ |
| 313 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 314 | op = acpi_ps_alloc_op(walk_state->opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | if (!op) { |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 316 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | } |
| 319 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 320 | /* Initialize the op */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | #if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY)) |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 323 | op->named.path = ACPI_CAST_PTR(u8, path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | #endif |
| 325 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 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 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | acpi_ps_append_arg(acpi_ps_get_parent_scope(&walk_state->parser_state), |
| 336 | op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | *out_op = op; |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 338 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | /******************************************************************************* |
| 342 | * |
| 343 | * FUNCTION: acpi_ds_load1_end_op |
| 344 | * |
| 345 | * PARAMETERS: walk_state - Current state of the parse tree walk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 354 | acpi_status acpi_ds_load1_end_op(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 356 | union acpi_parse_object *op; |
| 357 | acpi_object_type object_type; |
| 358 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 360 | ACPI_FUNCTION_TRACE("ds_load1_end_op"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | op = walk_state->op; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 363 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op, |
| 364 | walk_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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))) { |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 369 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) { |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 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 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 390 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 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 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 417 | object_type = (acpi_ps_get_opcode_info((op->common. |
| 418 | value.arg)-> |
| 419 | common. |
| 420 | aml_opcode))-> |
| 421 | object_type; |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 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 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | } |
| 429 | } |
| 430 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame^] | 431 | /* |
| 432 | * If we are executing a method, do not create any namespace objects |
| 433 | * during the load phase, only during execution. |
| 434 | */ |
| 435 | if (!walk_state->method_node) { |
| 436 | if (op->common.aml_opcode == AML_METHOD_OP) { |
| 437 | /* |
| 438 | * method_op pkg_length name_string method_flags term_list |
| 439 | * |
| 440 | * Note: We must create the method node/object pair as soon as we |
| 441 | * see the method declaration. This allows later pass1 parsing |
| 442 | * of invocations of the method (need to know the number of |
| 443 | * arguments.) |
| 444 | */ |
| 445 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 446 | "LOADING-Method: State=%p Op=%p named_obj=%p\n", |
| 447 | walk_state, op, op->named.node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame^] | 449 | if (!acpi_ns_get_attached_object(op->named.node)) { |
| 450 | walk_state->operands[0] = |
| 451 | ACPI_CAST_PTR(void, op->named.node); |
| 452 | walk_state->num_operands = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame^] | 454 | status = |
| 455 | acpi_ds_create_operands(walk_state, |
| 456 | op->common.value. |
| 457 | arg); |
| 458 | if (ACPI_SUCCESS(status)) { |
| 459 | status = |
| 460 | acpi_ex_create_method(op->named. |
| 461 | data, |
| 462 | op->named. |
| 463 | length, |
| 464 | walk_state); |
| 465 | } |
| 466 | walk_state->operands[0] = NULL; |
| 467 | walk_state->num_operands = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame^] | 469 | if (ACPI_FAILURE(status)) { |
| 470 | return_ACPI_STATUS(status); |
| 471 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | } |
| 474 | } |
| 475 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame^] | 476 | /* Pop the scope stack (only if loading a table) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame^] | 478 | if (!walk_state->method_node && acpi_ns_opens_scope(object_type)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 479 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 480 | "(%s): Popping scope for Op %p\n", |
| 481 | acpi_ut_get_type_name(object_type), op)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 483 | status = acpi_ds_scope_stack_pop(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
| 485 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 486 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | } |
| 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | /******************************************************************************* |
| 490 | * |
| 491 | * FUNCTION: acpi_ds_load2_begin_op |
| 492 | * |
| 493 | * PARAMETERS: walk_state - Current state of the parse tree walk |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 494 | * out_op - Wher to return op if a new one is created |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | * |
| 496 | * RETURN: Status |
| 497 | * |
| 498 | * DESCRIPTION: Descending callback used during the loading of ACPI tables. |
| 499 | * |
| 500 | ******************************************************************************/ |
| 501 | |
| 502 | acpi_status |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 503 | acpi_ds_load2_begin_op(struct acpi_walk_state *walk_state, |
| 504 | union acpi_parse_object **out_op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 506 | union acpi_parse_object *op; |
| 507 | struct acpi_namespace_node *node; |
| 508 | acpi_status status; |
| 509 | acpi_object_type object_type; |
| 510 | char *buffer_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 512 | ACPI_FUNCTION_TRACE("ds_load2_begin_op"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
| 514 | op = walk_state->op; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 515 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p State=%p\n", op, |
| 516 | walk_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 518 | if (op) { |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 519 | if ((walk_state->control_state) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 520 | (walk_state->control_state->common.state == |
| 521 | ACPI_CONTROL_CONDITIONAL_EXECUTING)) { |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 522 | /* We are executing a while loop outside of a method */ |
| 523 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 524 | status = acpi_ds_exec_begin_op(walk_state, out_op); |
| 525 | return_ACPI_STATUS(status); |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 526 | } |
| 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | /* We only care about Namespace opcodes here */ |
| 529 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 530 | if ((!(walk_state->op_info->flags & AML_NSOPCODE) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 531 | (walk_state->opcode != AML_INT_NAMEPATH_OP)) || |
| 532 | (!(walk_state->op_info->flags & AML_NAMED))) { |
Robert Moore | aff8c27 | 2005-09-02 17:24:17 -0400 | [diff] [blame] | 533 | #ifdef ACPI_ENABLE_MODULE_LEVEL_CODE |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 534 | if ((walk_state->op_info->class == AML_CLASS_EXECUTE) || |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 535 | (walk_state->op_info->class == AML_CLASS_CONTROL)) { |
Robert Moore | aff8c27 | 2005-09-02 17:24:17 -0400 | [diff] [blame] | 536 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 537 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 538 | "Begin/EXEC: %s (fl %8.8X)\n", |
| 539 | walk_state->op_info->name, |
| 540 | walk_state->op_info->flags)); |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 541 | |
| 542 | /* Executing a type1 or type2 opcode outside of a method */ |
| 543 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 544 | status = |
| 545 | acpi_ds_exec_begin_op(walk_state, out_op); |
| 546 | return_ACPI_STATUS(status); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 547 | } |
Robert Moore | aff8c27 | 2005-09-02 17:24:17 -0400 | [diff] [blame] | 548 | #endif |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 549 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } |
| 551 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 552 | /* Get the name we are going to enter or lookup in the namespace */ |
| 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | if (walk_state->opcode == AML_INT_NAMEPATH_OP) { |
| 555 | /* For Namepath op, get the path string */ |
| 556 | |
| 557 | buffer_ptr = op->common.value.string; |
| 558 | if (!buffer_ptr) { |
| 559 | /* No name, just exit */ |
| 560 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 561 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 563 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | /* Get name from the op */ |
| 565 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 566 | buffer_ptr = (char *)&op->named.name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 568 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | /* Get the namestring from the raw AML */ |
| 570 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 571 | buffer_ptr = |
| 572 | acpi_ps_get_next_namestring(&walk_state->parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | /* Map the opcode into an internal object type */ |
| 576 | |
| 577 | object_type = walk_state->op_info->object_type; |
| 578 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 579 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 580 | "State=%p Op=%p Type=%X\n", walk_state, op, |
| 581 | object_type)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
| 583 | switch (walk_state->opcode) { |
| 584 | case AML_FIELD_OP: |
| 585 | case AML_BANK_FIELD_OP: |
| 586 | case AML_INDEX_FIELD_OP: |
| 587 | |
| 588 | node = NULL; |
| 589 | status = AE_OK; |
| 590 | break; |
| 591 | |
| 592 | case AML_INT_NAMEPATH_OP: |
| 593 | |
| 594 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 595 | * The name_path is an object reference to an existing object. |
| 596 | * Don't enter the name into the namespace, but look it up |
| 597 | * for use later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 599 | status = |
| 600 | acpi_ns_lookup(walk_state->scope_info, buffer_ptr, |
| 601 | object_type, ACPI_IMODE_EXECUTE, |
| 602 | ACPI_NS_SEARCH_PARENT, walk_state, &(node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | break; |
| 604 | |
| 605 | case AML_SCOPE_OP: |
| 606 | |
| 607 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 608 | * The Path is an object reference to an existing object. |
| 609 | * Don't enter the name into the namespace, but look it up |
| 610 | * for use later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 612 | status = |
| 613 | acpi_ns_lookup(walk_state->scope_info, buffer_ptr, |
| 614 | object_type, ACPI_IMODE_EXECUTE, |
| 615 | ACPI_NS_SEARCH_PARENT, walk_state, &(node)); |
| 616 | if (ACPI_FAILURE(status)) { |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 617 | #ifdef ACPI_ASL_COMPILER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | if (status == AE_NOT_FOUND) { |
| 619 | status = AE_OK; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 620 | } else { |
| 621 | ACPI_REPORT_NSERROR(buffer_ptr, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | } |
| 623 | #else |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 624 | ACPI_REPORT_NSERROR(buffer_ptr, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | #endif |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 626 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
| 628 | /* |
| 629 | * We must check to make sure that the target is |
| 630 | * one of the opcodes that actually opens a scope |
| 631 | */ |
| 632 | switch (node->type) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 633 | case ACPI_TYPE_LOCAL_SCOPE: /* Scope */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | case ACPI_TYPE_DEVICE: |
| 635 | case ACPI_TYPE_POWER: |
| 636 | case ACPI_TYPE_PROCESSOR: |
| 637 | case ACPI_TYPE_THERMAL: |
| 638 | |
| 639 | /* These are acceptable types */ |
| 640 | break; |
| 641 | |
| 642 | case ACPI_TYPE_INTEGER: |
| 643 | case ACPI_TYPE_STRING: |
| 644 | case ACPI_TYPE_BUFFER: |
| 645 | |
| 646 | /* |
| 647 | * These types we will allow, but we will change the type. This |
| 648 | * enables some existing code of the form: |
| 649 | * |
| 650 | * Name (DEB, 0) |
| 651 | * Scope (DEB) { ... } |
| 652 | */ |
| 653 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 654 | ACPI_REPORT_WARNING(("Type override - [%4.4s] had invalid type (%s) for Scope operator, changed to (Scope)\n", buffer_ptr, acpi_ut_get_type_name(node->type))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | |
| 656 | node->type = ACPI_TYPE_ANY; |
| 657 | walk_state->scope_info->common.value = ACPI_TYPE_ANY; |
| 658 | break; |
| 659 | |
| 660 | default: |
| 661 | |
| 662 | /* All other types are an error */ |
| 663 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 664 | ACPI_REPORT_ERROR(("Invalid type (%s) for target of Scope operator [%4.4s]\n", acpi_ut_get_type_name(node->type), buffer_ptr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
| 666 | return (AE_AML_OPERAND_TYPE); |
| 667 | } |
| 668 | break; |
| 669 | |
| 670 | default: |
| 671 | |
| 672 | /* All other opcodes */ |
| 673 | |
| 674 | if (op && op->common.node) { |
| 675 | /* This op/node was previously entered into the namespace */ |
| 676 | |
| 677 | node = op->common.node; |
| 678 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 679 | if (acpi_ns_opens_scope(object_type)) { |
| 680 | status = |
| 681 | acpi_ds_scope_stack_push(node, object_type, |
| 682 | walk_state); |
| 683 | if (ACPI_FAILURE(status)) { |
| 684 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 688 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | /* |
| 692 | * Enter the named type into the internal namespace. We enter the name |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 693 | * as we go downward in the parse tree. Any necessary subobjects that |
| 694 | * involve arguments to the opcode must be created as we go back up the |
| 695 | * parse tree later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | * |
| 697 | * Note: Name may already exist if we are executing a deferred opcode. |
| 698 | */ |
| 699 | if (walk_state->deferred_node) { |
| 700 | /* This name is already in the namespace, get the node */ |
| 701 | |
| 702 | node = walk_state->deferred_node; |
| 703 | status = AE_OK; |
| 704 | break; |
| 705 | } |
| 706 | |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 707 | /* Add new entry into namespace */ |
| 708 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 709 | status = |
| 710 | acpi_ns_lookup(walk_state->scope_info, buffer_ptr, |
| 711 | object_type, ACPI_IMODE_LOAD_PASS2, |
| 712 | ACPI_NS_NO_UPSEARCH, walk_state, &(node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | break; |
| 714 | } |
| 715 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 716 | if (ACPI_FAILURE(status)) { |
| 717 | ACPI_REPORT_NSERROR(buffer_ptr, status); |
| 718 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | } |
| 720 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | if (!op) { |
| 722 | /* Create a new op */ |
| 723 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 724 | op = acpi_ps_alloc_op(walk_state->opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | if (!op) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 726 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | /* Initialize the new op */ |
| 730 | |
| 731 | if (node) { |
| 732 | op->named.name = node->name.integer; |
| 733 | } |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 734 | *out_op = op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | /* |
| 738 | * Put the Node in the "op" object that the parser uses, so we |
| 739 | * can get it again quickly when this scope is closed |
| 740 | */ |
| 741 | op->common.node = node; |
| 742 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 743 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
| 745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | /******************************************************************************* |
| 747 | * |
| 748 | * FUNCTION: acpi_ds_load2_end_op |
| 749 | * |
| 750 | * PARAMETERS: walk_state - Current state of the parse tree walk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | * |
| 752 | * RETURN: Status |
| 753 | * |
| 754 | * DESCRIPTION: Ascending callback used during the loading of the namespace, |
| 755 | * both control methods and everything else. |
| 756 | * |
| 757 | ******************************************************************************/ |
| 758 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 759 | acpi_status acpi_ds_load2_end_op(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 761 | union acpi_parse_object *op; |
| 762 | acpi_status status = AE_OK; |
| 763 | acpi_object_type object_type; |
| 764 | struct acpi_namespace_node *node; |
| 765 | union acpi_parse_object *arg; |
| 766 | struct acpi_namespace_node *new_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | #ifndef ACPI_NO_METHOD_EXECUTION |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 768 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | #endif |
| 770 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 771 | ACPI_FUNCTION_TRACE("ds_load2_end_op"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
| 773 | op = walk_state->op; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 774 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Opcode [%s] Op %p State %p\n", |
| 775 | walk_state->op_info->name, op, walk_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 777 | /* Check if opcode had an associated namespace object */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
| 779 | if (!(walk_state->op_info->flags & AML_NSOBJECT)) { |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 780 | #ifndef ACPI_NO_METHOD_EXECUTION |
Robert Moore | aff8c27 | 2005-09-02 17:24:17 -0400 | [diff] [blame] | 781 | #ifdef ACPI_ENABLE_MODULE_LEVEL_CODE |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 782 | /* No namespace object. Executable opcode? */ |
| 783 | |
| 784 | if ((walk_state->op_info->class == AML_CLASS_EXECUTE) || |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 785 | (walk_state->op_info->class == AML_CLASS_CONTROL)) { |
| 786 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 787 | "End/EXEC: %s (fl %8.8X)\n", |
| 788 | walk_state->op_info->name, |
| 789 | walk_state->op_info->flags)); |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 790 | |
| 791 | /* Executing a type1 or type2 opcode outside of a method */ |
| 792 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 793 | status = acpi_ds_exec_end_op(walk_state); |
| 794 | return_ACPI_STATUS(status); |
Robert Moore | 88ac00f | 2005-05-26 00:00:00 -0400 | [diff] [blame] | 795 | } |
| 796 | #endif |
Robert Moore | aff8c27 | 2005-09-02 17:24:17 -0400 | [diff] [blame] | 797 | #endif |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 798 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | if (op->common.aml_opcode == AML_SCOPE_OP) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 802 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 803 | "Ending scope Op=%p State=%p\n", op, |
| 804 | walk_state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | } |
| 806 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | object_type = walk_state->op_info->object_type; |
| 808 | |
| 809 | /* |
| 810 | * Get the Node/name from the earlier lookup |
| 811 | * (It was saved in the *op structure) |
| 812 | */ |
| 813 | node = op->common.node; |
| 814 | |
| 815 | /* |
| 816 | * Put the Node on the object stack (Contains the ACPI Name of |
| 817 | * this object) |
| 818 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 819 | walk_state->operands[0] = (void *)node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | walk_state->num_operands = 1; |
| 821 | |
| 822 | /* Pop the scope stack */ |
| 823 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 824 | if (acpi_ns_opens_scope(object_type) && |
| 825 | (op->common.aml_opcode != AML_INT_METHODCALL_OP)) { |
| 826 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 827 | "(%s) Popping scope for Op %p\n", |
| 828 | acpi_ut_get_type_name(object_type), op)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 830 | status = acpi_ds_scope_stack_pop(walk_state); |
| 831 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | goto cleanup; |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | /* |
| 837 | * Named operations are as follows: |
| 838 | * |
| 839 | * AML_ALIAS |
| 840 | * AML_BANKFIELD |
| 841 | * AML_CREATEBITFIELD |
| 842 | * AML_CREATEBYTEFIELD |
| 843 | * AML_CREATEDWORDFIELD |
| 844 | * AML_CREATEFIELD |
| 845 | * AML_CREATEQWORDFIELD |
| 846 | * AML_CREATEWORDFIELD |
| 847 | * AML_DATA_REGION |
| 848 | * AML_DEVICE |
| 849 | * AML_EVENT |
| 850 | * AML_FIELD |
| 851 | * AML_INDEXFIELD |
| 852 | * AML_METHOD |
| 853 | * AML_METHODCALL |
| 854 | * AML_MUTEX |
| 855 | * AML_NAME |
| 856 | * AML_NAMEDFIELD |
| 857 | * AML_OPREGION |
| 858 | * AML_POWERRES |
| 859 | * AML_PROCESSOR |
| 860 | * AML_SCOPE |
| 861 | * AML_THERMALZONE |
| 862 | */ |
| 863 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 864 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 865 | "Create-Load [%s] State=%p Op=%p named_obj=%p\n", |
| 866 | acpi_ps_get_opcode_name(op->common.aml_opcode), |
| 867 | walk_state, op, node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
| 869 | /* Decode the opcode */ |
| 870 | |
| 871 | arg = op->common.value.arg; |
| 872 | |
| 873 | switch (walk_state->op_info->type) { |
| 874 | #ifndef ACPI_NO_METHOD_EXECUTION |
| 875 | |
| 876 | case AML_TYPE_CREATE_FIELD: |
| 877 | |
| 878 | /* |
| 879 | * Create the field object, but the field buffer and index must |
| 880 | * be evaluated later during the execution phase |
| 881 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 882 | status = acpi_ds_create_buffer_field(op, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | break; |
| 884 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 885 | case AML_TYPE_NAMED_FIELD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 887 | /* |
| 888 | * If we are executing a method, initialize the field |
| 889 | */ |
| 890 | if (walk_state->method_node) { |
| 891 | status = acpi_ds_init_field_objects(op, walk_state); |
| 892 | } |
| 893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | switch (op->common.aml_opcode) { |
| 895 | case AML_INDEX_FIELD_OP: |
| 896 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 897 | status = |
| 898 | acpi_ds_create_index_field(op, |
| 899 | (acpi_handle) arg-> |
| 900 | common.node, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | break; |
| 902 | |
| 903 | case AML_BANK_FIELD_OP: |
| 904 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 905 | status = |
| 906 | acpi_ds_create_bank_field(op, arg->common.node, |
| 907 | walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | break; |
| 909 | |
| 910 | case AML_FIELD_OP: |
| 911 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 912 | status = |
| 913 | acpi_ds_create_field(op, arg->common.node, |
| 914 | walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | break; |
| 916 | |
| 917 | default: |
| 918 | /* All NAMED_FIELD opcodes must be handled above */ |
| 919 | break; |
| 920 | } |
| 921 | break; |
| 922 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 923 | case AML_TYPE_NAMED_SIMPLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 925 | status = acpi_ds_create_operands(walk_state, arg); |
| 926 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | goto cleanup; |
| 928 | } |
| 929 | |
| 930 | switch (op->common.aml_opcode) { |
| 931 | case AML_PROCESSOR_OP: |
| 932 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 933 | status = acpi_ex_create_processor(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | break; |
| 935 | |
| 936 | case AML_POWER_RES_OP: |
| 937 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 938 | status = acpi_ex_create_power_resource(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | break; |
| 940 | |
| 941 | case AML_MUTEX_OP: |
| 942 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 943 | status = acpi_ex_create_mutex(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | break; |
| 945 | |
| 946 | case AML_EVENT_OP: |
| 947 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 948 | status = acpi_ex_create_event(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | break; |
| 950 | |
| 951 | case AML_DATA_REGION_OP: |
| 952 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 953 | status = acpi_ex_create_table_region(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | break; |
| 955 | |
| 956 | case AML_ALIAS_OP: |
| 957 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 958 | status = acpi_ex_create_alias(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | break; |
| 960 | |
| 961 | default: |
| 962 | /* Unknown opcode */ |
| 963 | |
| 964 | status = AE_OK; |
| 965 | goto cleanup; |
| 966 | } |
| 967 | |
| 968 | /* Delete operands */ |
| 969 | |
| 970 | for (i = 1; i < walk_state->num_operands; i++) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 971 | acpi_ut_remove_reference(walk_state->operands[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | walk_state->operands[i] = NULL; |
| 973 | } |
| 974 | |
| 975 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 976 | #endif /* ACPI_NO_METHOD_EXECUTION */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | |
| 978 | case AML_TYPE_NAMED_COMPLEX: |
| 979 | |
| 980 | switch (op->common.aml_opcode) { |
| 981 | #ifndef ACPI_NO_METHOD_EXECUTION |
| 982 | case AML_REGION_OP: |
Bob Moore | 28f55eb | 2005-12-02 18:27:00 -0500 | [diff] [blame] | 983 | |
| 984 | /* |
| 985 | * If we are executing a method, initialize the region |
| 986 | */ |
| 987 | if (walk_state->method_node) { |
| 988 | status = |
| 989 | acpi_ex_create_region(op->named.data, |
| 990 | op->named.length, |
| 991 | (acpi_adr_space_type) |
| 992 | ((op->common.value. |
| 993 | arg)->common.value. |
| 994 | integer), |
| 995 | walk_state); |
| 996 | if (ACPI_FAILURE(status)) { |
| 997 | return (status); |
| 998 | } |
| 999 | } |
| 1000 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1002 | * The op_region is not fully parsed at this time. Only valid |
| 1003 | * argument is the space_id. (We must save the address of the |
| 1004 | * AML of the address and length operands) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | */ |
| 1006 | /* |
| 1007 | * If we have a valid region, initialize it |
| 1008 | * Namespace is NOT locked at this point. |
| 1009 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1010 | status = |
| 1011 | acpi_ev_initialize_region |
| 1012 | (acpi_ns_get_attached_object(node), FALSE); |
| 1013 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | /* |
| 1015 | * If AE_NOT_EXIST is returned, it is not fatal |
| 1016 | * because many regions get created before a handler |
| 1017 | * is installed for said region. |
| 1018 | */ |
| 1019 | if (AE_NOT_EXIST == status) { |
| 1020 | status = AE_OK; |
| 1021 | } |
| 1022 | } |
| 1023 | break; |
| 1024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | case AML_NAME_OP: |
| 1026 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1027 | status = acpi_ds_create_node(walk_state, node, op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | break; |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame^] | 1029 | |
| 1030 | case AML_METHOD_OP: |
| 1031 | /* |
| 1032 | * method_op pkg_length name_string method_flags term_list |
| 1033 | * |
| 1034 | * Note: We must create the method node/object pair as soon as we |
| 1035 | * see the method declaration. This allows later pass1 parsing |
| 1036 | * of invocations of the method (need to know the number of |
| 1037 | * arguments.) |
| 1038 | */ |
| 1039 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 1040 | "LOADING-Method: State=%p Op=%p named_obj=%p\n", |
| 1041 | walk_state, op, op->named.node)); |
| 1042 | |
| 1043 | if (!acpi_ns_get_attached_object(op->named.node)) { |
| 1044 | walk_state->operands[0] = |
| 1045 | ACPI_CAST_PTR(void, op->named.node); |
| 1046 | walk_state->num_operands = 1; |
| 1047 | |
| 1048 | status = |
| 1049 | acpi_ds_create_operands(walk_state, |
| 1050 | op->common.value. |
| 1051 | arg); |
| 1052 | if (ACPI_SUCCESS(status)) { |
| 1053 | status = |
| 1054 | acpi_ex_create_method(op->named. |
| 1055 | data, |
| 1056 | op->named. |
| 1057 | length, |
| 1058 | walk_state); |
| 1059 | } |
| 1060 | walk_state->operands[0] = NULL; |
| 1061 | walk_state->num_operands = 0; |
| 1062 | |
| 1063 | if (ACPI_FAILURE(status)) { |
| 1064 | return_ACPI_STATUS(status); |
| 1065 | } |
| 1066 | } |
| 1067 | break; |
| 1068 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1069 | #endif /* ACPI_NO_METHOD_EXECUTION */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
| 1071 | default: |
| 1072 | /* All NAMED_COMPLEX opcodes must be handled above */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | break; |
| 1074 | } |
| 1075 | break; |
| 1076 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | case AML_CLASS_INTERNAL: |
| 1078 | |
| 1079 | /* case AML_INT_NAMEPATH_OP: */ |
| 1080 | break; |
| 1081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | case AML_CLASS_METHOD_CALL: |
| 1083 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1084 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 1085 | "RESOLVING-method_call: State=%p Op=%p named_obj=%p\n", |
| 1086 | walk_state, op, node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
| 1088 | /* |
| 1089 | * Lookup the method name and save the Node |
| 1090 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1091 | status = |
| 1092 | acpi_ns_lookup(walk_state->scope_info, |
| 1093 | arg->common.value.string, ACPI_TYPE_ANY, |
| 1094 | ACPI_IMODE_LOAD_PASS2, |
| 1095 | ACPI_NS_SEARCH_PARENT | |
| 1096 | ACPI_NS_DONT_OPEN_SCOPE, walk_state, |
| 1097 | &(new_node)); |
| 1098 | if (ACPI_SUCCESS(status)) { |
Len Brown | bd6dbdf | 2005-08-04 00:17:42 -0400 | [diff] [blame] | 1099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | /* |
| 1101 | * Make sure that what we found is indeed a method |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1102 | * We didn't search for a method on purpose, to see if the name |
| 1103 | * would resolve |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | */ |
| 1105 | if (new_node->type != ACPI_TYPE_METHOD) { |
| 1106 | status = AE_AML_OPERAND_TYPE; |
| 1107 | } |
| 1108 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1109 | /* We could put the returned object (Node) on the object stack for |
| 1110 | * later, but for now, we will put it in the "op" object that the |
| 1111 | * parser uses, so we can get it again at the end of this scope |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | */ |
| 1113 | op->common.node = new_node; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1114 | } else { |
| 1115 | ACPI_REPORT_NSERROR(arg->common.value.string, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | } |
| 1117 | break; |
| 1118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | default: |
| 1120 | break; |
| 1121 | } |
| 1122 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1123 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
| 1125 | /* Remove the Node pushed at the very beginning */ |
| 1126 | |
| 1127 | walk_state->operands[0] = NULL; |
| 1128 | walk_state->num_operands = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1129 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | } |