Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: psloop - Main AML parse loop |
| 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 | |
| 44 | |
| 45 | /* |
| 46 | * Parse the AML and build an operation tree as most interpreters, |
| 47 | * like Perl, do. Parsing is done by hand rather than with a YACC |
| 48 | * generated parser to tightly constrain stack and dynamic memory |
| 49 | * usage. At the same time, parsing is kept flexible and the code |
| 50 | * fairly compact by parsing based on a list of AML opcode |
| 51 | * templates in aml_op_info[] |
| 52 | */ |
| 53 | |
| 54 | #include <acpi/acpi.h> |
| 55 | #include <acpi/acparser.h> |
| 56 | #include <acpi/acdispat.h> |
| 57 | #include <acpi/amlcode.h> |
| 58 | #include <acpi/acnamesp.h> |
| 59 | #include <acpi/acinterp.h> |
| 60 | |
| 61 | #define _COMPONENT ACPI_PARSER |
| 62 | ACPI_MODULE_NAME ("psloop") |
| 63 | |
| 64 | static u32 acpi_gbl_depth = 0; |
| 65 | |
| 66 | |
| 67 | /******************************************************************************* |
| 68 | * |
| 69 | * FUNCTION: acpi_ps_parse_loop |
| 70 | * |
| 71 | * PARAMETERS: walk_state - Current state |
| 72 | * |
| 73 | * RETURN: Status |
| 74 | * |
| 75 | * DESCRIPTION: Parse AML (pointed to by the current parser state) and return |
| 76 | * a tree of ops. |
| 77 | * |
| 78 | ******************************************************************************/ |
| 79 | |
| 80 | acpi_status |
| 81 | acpi_ps_parse_loop ( |
| 82 | struct acpi_walk_state *walk_state) |
| 83 | { |
| 84 | acpi_status status = AE_OK; |
| 85 | acpi_status status2; |
| 86 | union acpi_parse_object *op = NULL; /* current op */ |
| 87 | union acpi_parse_object *arg = NULL; |
| 88 | union acpi_parse_object *pre_op = NULL; |
| 89 | struct acpi_parse_state *parser_state; |
| 90 | u8 *aml_op_start = NULL; |
| 91 | |
| 92 | |
| 93 | ACPI_FUNCTION_TRACE_PTR ("ps_parse_loop", walk_state); |
| 94 | |
| 95 | if (walk_state->descending_callback == NULL) { |
| 96 | return_ACPI_STATUS (AE_BAD_PARAMETER); |
| 97 | } |
| 98 | |
| 99 | parser_state = &walk_state->parser_state; |
| 100 | walk_state->arg_types = 0; |
| 101 | |
| 102 | #if (!defined (ACPI_NO_METHOD_EXECUTION) && !defined (ACPI_CONSTANT_EVAL_ONLY)) |
| 103 | |
| 104 | if (walk_state->walk_type & ACPI_WALK_METHOD_RESTART) { |
| 105 | /* We are restarting a preempted control method */ |
| 106 | |
| 107 | if (acpi_ps_has_completed_scope (parser_state)) { |
| 108 | /* |
| 109 | * We must check if a predicate to an IF or WHILE statement |
| 110 | * was just completed |
| 111 | */ |
| 112 | if ((parser_state->scope->parse_scope.op) && |
| 113 | ((parser_state->scope->parse_scope.op->common.aml_opcode == AML_IF_OP) || |
| 114 | (parser_state->scope->parse_scope.op->common.aml_opcode == AML_WHILE_OP)) && |
| 115 | (walk_state->control_state) && |
| 116 | (walk_state->control_state->common.state == |
| 117 | ACPI_CONTROL_PREDICATE_EXECUTING)) { |
| 118 | /* |
| 119 | * A predicate was just completed, get the value of the |
| 120 | * predicate and branch based on that value |
| 121 | */ |
| 122 | walk_state->op = NULL; |
| 123 | status = acpi_ds_get_predicate_value (walk_state, ACPI_TO_POINTER (TRUE)); |
| 124 | if (ACPI_FAILURE (status) && |
| 125 | ((status & AE_CODE_MASK) != AE_CODE_CONTROL)) { |
| 126 | if (status == AE_AML_NO_RETURN_VALUE) { |
| 127 | ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, |
| 128 | "Invoked method did not return a value, %s\n", |
| 129 | acpi_format_exception (status))); |
| 130 | |
| 131 | } |
| 132 | ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, |
| 133 | "get_predicate Failed, %s\n", |
| 134 | acpi_format_exception (status))); |
| 135 | return_ACPI_STATUS (status); |
| 136 | } |
| 137 | |
| 138 | status = acpi_ps_next_parse_state (walk_state, op, status); |
| 139 | } |
| 140 | |
| 141 | acpi_ps_pop_scope (parser_state, &op, |
| 142 | &walk_state->arg_types, &walk_state->arg_count); |
| 143 | ACPI_DEBUG_PRINT ((ACPI_DB_PARSE, "Popped scope, Op=%p\n", op)); |
| 144 | } |
| 145 | else if (walk_state->prev_op) { |
| 146 | /* We were in the middle of an op */ |
| 147 | |
| 148 | op = walk_state->prev_op; |
| 149 | walk_state->arg_types = walk_state->prev_arg_types; |
| 150 | } |
| 151 | } |
| 152 | #endif |
| 153 | |
| 154 | /* Iterative parsing loop, while there is more AML to process: */ |
| 155 | |
| 156 | while ((parser_state->aml < parser_state->aml_end) || (op)) { |
| 157 | aml_op_start = parser_state->aml; |
| 158 | if (!op) { |
| 159 | /* Get the next opcode from the AML stream */ |
| 160 | |
| 161 | walk_state->aml_offset = (u32) ACPI_PTR_DIFF (parser_state->aml, |
| 162 | parser_state->aml_start); |
| 163 | walk_state->opcode = acpi_ps_peek_opcode (parser_state); |
| 164 | |
| 165 | /* |
| 166 | * First cut to determine what we have found: |
| 167 | * 1) A valid AML opcode |
| 168 | * 2) A name string |
| 169 | * 3) An unknown/invalid opcode |
| 170 | */ |
| 171 | walk_state->op_info = acpi_ps_get_opcode_info (walk_state->opcode); |
| 172 | switch (walk_state->op_info->class) { |
| 173 | case AML_CLASS_ASCII: |
| 174 | case AML_CLASS_PREFIX: |
| 175 | /* |
| 176 | * Starts with a valid prefix or ASCII char, this is a name |
| 177 | * string. Convert the bare name string to a namepath. |
| 178 | */ |
| 179 | walk_state->opcode = AML_INT_NAMEPATH_OP; |
| 180 | walk_state->arg_types = ARGP_NAMESTRING; |
| 181 | break; |
| 182 | |
| 183 | case AML_CLASS_UNKNOWN: |
| 184 | |
| 185 | /* The opcode is unrecognized. Just skip unknown opcodes */ |
| 186 | |
| 187 | ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, |
| 188 | "Found unknown opcode %X at AML address %p offset %X, ignoring\n", |
| 189 | walk_state->opcode, parser_state->aml, walk_state->aml_offset)); |
| 190 | |
| 191 | ACPI_DUMP_BUFFER (parser_state->aml, 128); |
| 192 | |
| 193 | /* Assume one-byte bad opcode */ |
| 194 | |
| 195 | parser_state->aml++; |
| 196 | continue; |
| 197 | |
| 198 | default: |
| 199 | |
| 200 | /* Found opcode info, this is a normal opcode */ |
| 201 | |
| 202 | parser_state->aml += acpi_ps_get_opcode_size (walk_state->opcode); |
| 203 | walk_state->arg_types = walk_state->op_info->parse_args; |
| 204 | break; |
| 205 | } |
| 206 | |
| 207 | /* Create Op structure and append to parent's argument list */ |
| 208 | |
| 209 | if (walk_state->op_info->flags & AML_NAMED) { |
| 210 | /* Allocate a new pre_op if necessary */ |
| 211 | |
| 212 | if (!pre_op) { |
| 213 | pre_op = acpi_ps_alloc_op (walk_state->opcode); |
| 214 | if (!pre_op) { |
| 215 | status = AE_NO_MEMORY; |
| 216 | goto close_this_op; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | pre_op->common.value.arg = NULL; |
| 221 | pre_op->common.aml_opcode = walk_state->opcode; |
| 222 | |
| 223 | /* |
| 224 | * Get and append arguments until we find the node that contains |
| 225 | * the name (the type ARGP_NAME). |
| 226 | */ |
| 227 | while (GET_CURRENT_ARG_TYPE (walk_state->arg_types) && |
| 228 | (GET_CURRENT_ARG_TYPE (walk_state->arg_types) != ARGP_NAME)) { |
| 229 | status = acpi_ps_get_next_arg (walk_state, parser_state, |
| 230 | GET_CURRENT_ARG_TYPE (walk_state->arg_types), &arg); |
| 231 | if (ACPI_FAILURE (status)) { |
| 232 | goto close_this_op; |
| 233 | } |
| 234 | |
| 235 | acpi_ps_append_arg (pre_op, arg); |
| 236 | INCREMENT_ARG_LIST (walk_state->arg_types); |
| 237 | } |
| 238 | |
| 239 | /* |
| 240 | * Make sure that we found a NAME and didn't run out of |
| 241 | * arguments |
| 242 | */ |
| 243 | if (!GET_CURRENT_ARG_TYPE (walk_state->arg_types)) { |
| 244 | status = AE_AML_NO_OPERAND; |
| 245 | goto close_this_op; |
| 246 | } |
| 247 | |
| 248 | /* We know that this arg is a name, move to next arg */ |
| 249 | |
| 250 | INCREMENT_ARG_LIST (walk_state->arg_types); |
| 251 | |
| 252 | /* |
| 253 | * Find the object. This will either insert the object into |
| 254 | * the namespace or simply look it up |
| 255 | */ |
| 256 | walk_state->op = NULL; |
| 257 | |
| 258 | status = walk_state->descending_callback (walk_state, &op); |
| 259 | if (ACPI_FAILURE (status)) { |
| 260 | ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, |
| 261 | "During name lookup/catalog, %s\n", |
| 262 | acpi_format_exception (status))); |
| 263 | goto close_this_op; |
| 264 | } |
| 265 | |
| 266 | if (!op) { |
| 267 | continue; |
| 268 | } |
| 269 | |
| 270 | status = acpi_ps_next_parse_state (walk_state, op, status); |
| 271 | if (status == AE_CTRL_PENDING) { |
| 272 | status = AE_OK; |
| 273 | goto close_this_op; |
| 274 | } |
| 275 | |
| 276 | if (ACPI_FAILURE (status)) { |
| 277 | goto close_this_op; |
| 278 | } |
| 279 | |
| 280 | acpi_ps_append_arg (op, pre_op->common.value.arg); |
| 281 | acpi_gbl_depth++; |
| 282 | |
| 283 | if (op->common.aml_opcode == AML_REGION_OP) { |
| 284 | /* |
| 285 | * Defer final parsing of an operation_region body, |
| 286 | * because we don't have enough info in the first pass |
| 287 | * to parse it correctly (i.e., there may be method |
| 288 | * calls within the term_arg elements of the body.) |
| 289 | * |
| 290 | * However, we must continue parsing because |
| 291 | * the opregion is not a standalone package -- |
| 292 | * we don't know where the end is at this point. |
| 293 | * |
| 294 | * (Length is unknown until parse of the body complete) |
| 295 | */ |
| 296 | op->named.data = aml_op_start; |
| 297 | op->named.length = 0; |
| 298 | } |
| 299 | } |
| 300 | else { |
| 301 | /* Not a named opcode, just allocate Op and append to parent */ |
| 302 | |
| 303 | walk_state->op_info = acpi_ps_get_opcode_info (walk_state->opcode); |
| 304 | op = acpi_ps_alloc_op (walk_state->opcode); |
| 305 | if (!op) { |
| 306 | status = AE_NO_MEMORY; |
| 307 | goto close_this_op; |
| 308 | } |
| 309 | |
| 310 | if (walk_state->op_info->flags & AML_CREATE) { |
| 311 | /* |
| 312 | * Backup to beginning of create_xXXfield declaration |
| 313 | * body_length is unknown until we parse the body |
| 314 | */ |
| 315 | op->named.data = aml_op_start; |
| 316 | op->named.length = 0; |
| 317 | } |
| 318 | |
| 319 | acpi_ps_append_arg (acpi_ps_get_parent_scope (parser_state), op); |
| 320 | |
| 321 | if ((walk_state->descending_callback != NULL)) { |
| 322 | /* |
| 323 | * Find the object. This will either insert the object into |
| 324 | * the namespace or simply look it up |
| 325 | */ |
| 326 | walk_state->op = op; |
| 327 | |
| 328 | status = walk_state->descending_callback (walk_state, &op); |
| 329 | status = acpi_ps_next_parse_state (walk_state, op, status); |
| 330 | if (status == AE_CTRL_PENDING) { |
| 331 | status = AE_OK; |
| 332 | goto close_this_op; |
| 333 | } |
| 334 | |
| 335 | if (ACPI_FAILURE (status)) { |
| 336 | goto close_this_op; |
| 337 | } |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | op->common.aml_offset = walk_state->aml_offset; |
| 342 | |
| 343 | if (walk_state->op_info) { |
| 344 | ACPI_DEBUG_PRINT ((ACPI_DB_PARSE, |
| 345 | "Opcode %4.4X [%s] Op %p Aml %p aml_offset %5.5X\n", |
| 346 | (u32) op->common.aml_opcode, walk_state->op_info->name, |
| 347 | op, parser_state->aml, op->common.aml_offset)); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | |
| 352 | /* |
| 353 | * Start arg_count at zero because we don't know if there are |
| 354 | * any args yet |
| 355 | */ |
| 356 | walk_state->arg_count = 0; |
| 357 | |
| 358 | /* Are there any arguments that must be processed? */ |
| 359 | |
| 360 | if (walk_state->arg_types) { |
| 361 | /* Get arguments */ |
| 362 | |
| 363 | switch (op->common.aml_opcode) { |
| 364 | case AML_BYTE_OP: /* AML_BYTEDATA_ARG */ |
| 365 | case AML_WORD_OP: /* AML_WORDDATA_ARG */ |
| 366 | case AML_DWORD_OP: /* AML_DWORDATA_ARG */ |
| 367 | case AML_QWORD_OP: /* AML_QWORDATA_ARG */ |
| 368 | case AML_STRING_OP: /* AML_ASCIICHARLIST_ARG */ |
| 369 | |
| 370 | /* Fill in constant or string argument directly */ |
| 371 | |
| 372 | acpi_ps_get_next_simple_arg (parser_state, |
| 373 | GET_CURRENT_ARG_TYPE (walk_state->arg_types), op); |
| 374 | break; |
| 375 | |
| 376 | case AML_INT_NAMEPATH_OP: /* AML_NAMESTRING_ARG */ |
| 377 | |
| 378 | status = acpi_ps_get_next_namepath (walk_state, parser_state, op, 1); |
| 379 | if (ACPI_FAILURE (status)) { |
| 380 | goto close_this_op; |
| 381 | } |
| 382 | |
| 383 | walk_state->arg_types = 0; |
| 384 | break; |
| 385 | |
| 386 | default: |
| 387 | /* |
| 388 | * Op is not a constant or string, append each argument |
| 389 | * to the Op |
| 390 | */ |
| 391 | while (GET_CURRENT_ARG_TYPE (walk_state->arg_types) && |
| 392 | !walk_state->arg_count) { |
| 393 | walk_state->aml_offset = (u32) |
| 394 | ACPI_PTR_DIFF (parser_state->aml, parser_state->aml_start); |
| 395 | |
| 396 | status = acpi_ps_get_next_arg (walk_state, parser_state, |
| 397 | GET_CURRENT_ARG_TYPE (walk_state->arg_types), |
| 398 | &arg); |
| 399 | if (ACPI_FAILURE (status)) { |
| 400 | goto close_this_op; |
| 401 | } |
| 402 | |
| 403 | if (arg) { |
| 404 | arg->common.aml_offset = walk_state->aml_offset; |
| 405 | acpi_ps_append_arg (op, arg); |
| 406 | } |
| 407 | INCREMENT_ARG_LIST (walk_state->arg_types); |
| 408 | } |
| 409 | |
Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame^] | 410 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 411 | /* Special processing for certain opcodes */ |
| 412 | |
Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame^] | 413 | /* TBD (remove): Temporary mechanism to disable this code if needed */ |
| 414 | |
| 415 | #ifndef ACPI_NO_MODULE_LEVEL_CODE |
| 416 | |
| 417 | if ((walk_state->pass_number <= ACPI_IMODE_LOAD_PASS1) && |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 418 | ((walk_state->parse_flags & ACPI_PARSE_DISASSEMBLE) == 0)) { |
| 419 | /* |
| 420 | * We want to skip If/Else/While constructs during Pass1 |
| 421 | * because we want to actually conditionally execute the |
| 422 | * code during Pass2. |
| 423 | * |
| 424 | * Except for disassembly, where we always want to |
| 425 | * walk the If/Else/While packages |
| 426 | */ |
| 427 | switch (op->common.aml_opcode) { |
| 428 | case AML_IF_OP: |
| 429 | case AML_ELSE_OP: |
| 430 | case AML_WHILE_OP: |
| 431 | |
| 432 | /* Skip body of if/else/while in pass 1 */ |
| 433 | |
| 434 | parser_state->aml = parser_state->pkg_end; |
| 435 | walk_state->arg_count = 0; |
| 436 | break; |
| 437 | |
| 438 | default: |
| 439 | break; |
| 440 | } |
| 441 | } |
Robert Moore | f9f4601 | 2005-07-08 00:00:00 -0400 | [diff] [blame^] | 442 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 443 | switch (op->common.aml_opcode) { |
| 444 | case AML_METHOD_OP: |
| 445 | |
| 446 | /* |
| 447 | * Skip parsing of control method |
| 448 | * because we don't have enough info in the first pass |
| 449 | * to parse it correctly. |
| 450 | * |
| 451 | * Save the length and address of the body |
| 452 | */ |
| 453 | op->named.data = parser_state->aml; |
| 454 | op->named.length = (u32) (parser_state->pkg_end - |
| 455 | parser_state->aml); |
| 456 | |
| 457 | /* Skip body of method */ |
| 458 | |
| 459 | parser_state->aml = parser_state->pkg_end; |
| 460 | walk_state->arg_count = 0; |
| 461 | break; |
| 462 | |
| 463 | case AML_BUFFER_OP: |
| 464 | case AML_PACKAGE_OP: |
| 465 | case AML_VAR_PACKAGE_OP: |
| 466 | |
| 467 | if ((op->common.parent) && |
| 468 | (op->common.parent->common.aml_opcode == AML_NAME_OP) && |
| 469 | (walk_state->pass_number <= ACPI_IMODE_LOAD_PASS2)) { |
| 470 | /* |
| 471 | * Skip parsing of Buffers and Packages |
| 472 | * because we don't have enough info in the first pass |
| 473 | * to parse them correctly. |
| 474 | */ |
| 475 | op->named.data = aml_op_start; |
| 476 | op->named.length = (u32) (parser_state->pkg_end - |
| 477 | aml_op_start); |
| 478 | |
| 479 | /* Skip body */ |
| 480 | |
| 481 | parser_state->aml = parser_state->pkg_end; |
| 482 | walk_state->arg_count = 0; |
| 483 | } |
| 484 | break; |
| 485 | |
| 486 | case AML_WHILE_OP: |
| 487 | |
| 488 | if (walk_state->control_state) { |
| 489 | walk_state->control_state->control.package_end = |
| 490 | parser_state->pkg_end; |
| 491 | } |
| 492 | break; |
| 493 | |
| 494 | default: |
| 495 | |
| 496 | /* No action for all other opcodes */ |
| 497 | break; |
| 498 | } |
| 499 | break; |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | /* Check for arguments that need to be processed */ |
| 504 | |
| 505 | if (walk_state->arg_count) { |
| 506 | /* |
| 507 | * There are arguments (complex ones), push Op and |
| 508 | * prepare for argument |
| 509 | */ |
| 510 | status = acpi_ps_push_scope (parser_state, op, |
| 511 | walk_state->arg_types, walk_state->arg_count); |
| 512 | if (ACPI_FAILURE (status)) { |
| 513 | goto close_this_op; |
| 514 | } |
| 515 | op = NULL; |
| 516 | continue; |
| 517 | } |
| 518 | |
| 519 | /* |
| 520 | * All arguments have been processed -- Op is complete, |
| 521 | * prepare for next |
| 522 | */ |
| 523 | walk_state->op_info = acpi_ps_get_opcode_info (op->common.aml_opcode); |
| 524 | if (walk_state->op_info->flags & AML_NAMED) { |
| 525 | if (acpi_gbl_depth) { |
| 526 | acpi_gbl_depth--; |
| 527 | } |
| 528 | |
| 529 | if (op->common.aml_opcode == AML_REGION_OP) { |
| 530 | /* |
| 531 | * Skip parsing of control method or opregion body, |
| 532 | * because we don't have enough info in the first pass |
| 533 | * to parse them correctly. |
| 534 | * |
| 535 | * Completed parsing an op_region declaration, we now |
| 536 | * know the length. |
| 537 | */ |
| 538 | op->named.length = (u32) (parser_state->aml - op->named.data); |
| 539 | } |
| 540 | } |
| 541 | |
| 542 | if (walk_state->op_info->flags & AML_CREATE) { |
| 543 | /* |
| 544 | * Backup to beginning of create_xXXfield declaration (1 for |
| 545 | * Opcode) |
| 546 | * |
| 547 | * body_length is unknown until we parse the body |
| 548 | */ |
| 549 | op->named.length = (u32) (parser_state->aml - op->named.data); |
| 550 | } |
| 551 | |
| 552 | /* This op complete, notify the dispatcher */ |
| 553 | |
| 554 | if (walk_state->ascending_callback != NULL) { |
| 555 | walk_state->op = op; |
| 556 | walk_state->opcode = op->common.aml_opcode; |
| 557 | |
| 558 | status = walk_state->ascending_callback (walk_state); |
| 559 | status = acpi_ps_next_parse_state (walk_state, op, status); |
| 560 | if (status == AE_CTRL_PENDING) { |
| 561 | status = AE_OK; |
| 562 | goto close_this_op; |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | |
| 567 | close_this_op: |
| 568 | /* |
| 569 | * Finished one argument of the containing scope |
| 570 | */ |
| 571 | parser_state->scope->parse_scope.arg_count--; |
| 572 | |
| 573 | /* Finished with pre_op */ |
| 574 | |
| 575 | if (pre_op) { |
| 576 | acpi_ps_free_op (pre_op); |
| 577 | pre_op = NULL; |
| 578 | } |
| 579 | |
| 580 | /* Close this Op (will result in parse subtree deletion) */ |
| 581 | |
| 582 | status2 = acpi_ps_complete_this_op (walk_state, op); |
| 583 | if (ACPI_FAILURE (status2)) { |
| 584 | return_ACPI_STATUS (status2); |
| 585 | } |
| 586 | op = NULL; |
| 587 | |
| 588 | switch (status) { |
| 589 | case AE_OK: |
| 590 | break; |
| 591 | |
| 592 | |
| 593 | case AE_CTRL_TRANSFER: |
| 594 | |
| 595 | /* We are about to transfer to a called method. */ |
| 596 | |
| 597 | walk_state->prev_op = op; |
| 598 | walk_state->prev_arg_types = walk_state->arg_types; |
| 599 | return_ACPI_STATUS (status); |
| 600 | |
| 601 | |
| 602 | case AE_CTRL_END: |
| 603 | |
| 604 | acpi_ps_pop_scope (parser_state, &op, |
| 605 | &walk_state->arg_types, &walk_state->arg_count); |
| 606 | |
| 607 | if (op) { |
| 608 | walk_state->op = op; |
| 609 | walk_state->op_info = acpi_ps_get_opcode_info (op->common.aml_opcode); |
| 610 | walk_state->opcode = op->common.aml_opcode; |
| 611 | |
| 612 | status = walk_state->ascending_callback (walk_state); |
| 613 | status = acpi_ps_next_parse_state (walk_state, op, status); |
| 614 | |
| 615 | status2 = acpi_ps_complete_this_op (walk_state, op); |
| 616 | if (ACPI_FAILURE (status2)) { |
| 617 | return_ACPI_STATUS (status2); |
| 618 | } |
| 619 | op = NULL; |
| 620 | } |
| 621 | status = AE_OK; |
| 622 | break; |
| 623 | |
| 624 | |
| 625 | case AE_CTRL_BREAK: |
| 626 | case AE_CTRL_CONTINUE: |
| 627 | |
| 628 | /* Pop off scopes until we find the While */ |
| 629 | |
| 630 | while (!op || (op->common.aml_opcode != AML_WHILE_OP)) { |
| 631 | acpi_ps_pop_scope (parser_state, &op, |
| 632 | &walk_state->arg_types, &walk_state->arg_count); |
| 633 | } |
| 634 | |
| 635 | /* Close this iteration of the While loop */ |
| 636 | |
| 637 | walk_state->op = op; |
| 638 | walk_state->op_info = acpi_ps_get_opcode_info (op->common.aml_opcode); |
| 639 | walk_state->opcode = op->common.aml_opcode; |
| 640 | |
| 641 | status = walk_state->ascending_callback (walk_state); |
| 642 | status = acpi_ps_next_parse_state (walk_state, op, status); |
| 643 | |
| 644 | status2 = acpi_ps_complete_this_op (walk_state, op); |
| 645 | if (ACPI_FAILURE (status2)) { |
| 646 | return_ACPI_STATUS (status2); |
| 647 | } |
| 648 | op = NULL; |
| 649 | |
| 650 | status = AE_OK; |
| 651 | break; |
| 652 | |
| 653 | |
| 654 | case AE_CTRL_TERMINATE: |
| 655 | |
| 656 | status = AE_OK; |
| 657 | |
| 658 | /* Clean up */ |
| 659 | do { |
| 660 | if (op) { |
| 661 | status2 = acpi_ps_complete_this_op (walk_state, op); |
| 662 | if (ACPI_FAILURE (status2)) { |
| 663 | return_ACPI_STATUS (status2); |
| 664 | } |
| 665 | } |
| 666 | acpi_ps_pop_scope (parser_state, &op, |
| 667 | &walk_state->arg_types, &walk_state->arg_count); |
| 668 | |
| 669 | } while (op); |
| 670 | |
| 671 | return_ACPI_STATUS (status); |
| 672 | |
| 673 | |
| 674 | default: /* All other non-AE_OK status */ |
| 675 | |
| 676 | do { |
| 677 | if (op) { |
| 678 | status2 = acpi_ps_complete_this_op (walk_state, op); |
| 679 | if (ACPI_FAILURE (status2)) { |
| 680 | return_ACPI_STATUS (status2); |
| 681 | } |
| 682 | } |
| 683 | acpi_ps_pop_scope (parser_state, &op, |
| 684 | &walk_state->arg_types, &walk_state->arg_count); |
| 685 | |
| 686 | } while (op); |
| 687 | |
| 688 | |
| 689 | /* |
| 690 | * TBD: Cleanup parse ops on error |
| 691 | */ |
| 692 | #if 0 |
| 693 | if (op == NULL) { |
| 694 | acpi_ps_pop_scope (parser_state, &op, |
| 695 | &walk_state->arg_types, &walk_state->arg_count); |
| 696 | } |
| 697 | #endif |
| 698 | walk_state->prev_op = op; |
| 699 | walk_state->prev_arg_types = walk_state->arg_types; |
| 700 | return_ACPI_STATUS (status); |
| 701 | } |
| 702 | |
| 703 | /* This scope complete? */ |
| 704 | |
| 705 | if (acpi_ps_has_completed_scope (parser_state)) { |
| 706 | acpi_ps_pop_scope (parser_state, &op, |
| 707 | &walk_state->arg_types, &walk_state->arg_count); |
| 708 | ACPI_DEBUG_PRINT ((ACPI_DB_PARSE, "Popped scope, Op=%p\n", op)); |
| 709 | } |
| 710 | else { |
| 711 | op = NULL; |
| 712 | } |
| 713 | |
| 714 | } /* while parser_state->Aml */ |
| 715 | |
| 716 | |
| 717 | /* |
| 718 | * Complete the last Op (if not completed), and clear the scope stack. |
| 719 | * It is easily possible to end an AML "package" with an unbounded number |
| 720 | * of open scopes (such as when several ASL blocks are closed with |
| 721 | * sequential closing braces). We want to terminate each one cleanly. |
| 722 | */ |
| 723 | ACPI_DEBUG_PRINT ((ACPI_DB_PARSE, "AML package complete at Op %p\n", op)); |
| 724 | do { |
| 725 | if (op) { |
| 726 | if (walk_state->ascending_callback != NULL) { |
| 727 | walk_state->op = op; |
| 728 | walk_state->op_info = acpi_ps_get_opcode_info (op->common.aml_opcode); |
| 729 | walk_state->opcode = op->common.aml_opcode; |
| 730 | |
| 731 | status = walk_state->ascending_callback (walk_state); |
| 732 | status = acpi_ps_next_parse_state (walk_state, op, status); |
| 733 | if (status == AE_CTRL_PENDING) { |
| 734 | status = AE_OK; |
| 735 | goto close_this_op; |
| 736 | } |
| 737 | |
| 738 | if (status == AE_CTRL_TERMINATE) { |
| 739 | status = AE_OK; |
| 740 | |
| 741 | /* Clean up */ |
| 742 | do { |
| 743 | if (op) { |
| 744 | status2 = acpi_ps_complete_this_op (walk_state, op); |
| 745 | if (ACPI_FAILURE (status2)) { |
| 746 | return_ACPI_STATUS (status2); |
| 747 | } |
| 748 | } |
| 749 | |
| 750 | acpi_ps_pop_scope (parser_state, &op, |
| 751 | &walk_state->arg_types, &walk_state->arg_count); |
| 752 | |
| 753 | } while (op); |
| 754 | |
| 755 | return_ACPI_STATUS (status); |
| 756 | } |
| 757 | |
| 758 | else if (ACPI_FAILURE (status)) { |
| 759 | /* First error is most important */ |
| 760 | |
| 761 | (void) acpi_ps_complete_this_op (walk_state, op); |
| 762 | return_ACPI_STATUS (status); |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | status2 = acpi_ps_complete_this_op (walk_state, op); |
| 767 | if (ACPI_FAILURE (status2)) { |
| 768 | return_ACPI_STATUS (status2); |
| 769 | } |
| 770 | } |
| 771 | |
| 772 | acpi_ps_pop_scope (parser_state, &op, &walk_state->arg_types, |
| 773 | &walk_state->arg_count); |
| 774 | |
| 775 | } while (op); |
| 776 | |
| 777 | return_ACPI_STATUS (status); |
| 778 | } |
| 779 | |
| 780 | |