1 /******************************************************************************
3 * Module Name: psloop - Main AML parse loop
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.
45 * Parse the AML and build an operation tree as most interpreters, (such as
46 * Perl) do. Parsing is done by hand rather than with a YACC generated parser
47 * to tightly constrain stack and dynamic memory usage. Parsing is kept
48 * flexible and the code fairly compact by parsing based on a list of AML
49 * opcode templates in aml_op_info[].
52 #include <acpi/acpi.h>
58 #define _COMPONENT ACPI_PARSER
59 ACPI_MODULE_NAME("psloop")
61 static u32 acpi_gbl_depth
= 0;
63 /* Local prototypes */
65 static acpi_status
acpi_ps_get_aml_opcode(struct acpi_walk_state
*walk_state
);
68 acpi_ps_build_named_op(struct acpi_walk_state
*walk_state
,
70 union acpi_parse_object
*unnamed_op
,
71 union acpi_parse_object
**op
);
74 acpi_ps_create_op(struct acpi_walk_state
*walk_state
,
75 u8
* aml_op_start
, union acpi_parse_object
**new_op
);
78 acpi_ps_get_arguments(struct acpi_walk_state
*walk_state
,
79 u8
* aml_op_start
, union acpi_parse_object
*op
);
82 acpi_ps_complete_op(struct acpi_walk_state
*walk_state
,
83 union acpi_parse_object
**op
, acpi_status status
);
86 acpi_ps_complete_final_op(struct acpi_walk_state
*walk_state
,
87 union acpi_parse_object
*op
, acpi_status status
);
90 acpi_ps_link_module_code(union acpi_parse_object
*parent_op
,
91 u8
*aml_start
, u32 aml_length
, acpi_owner_id owner_id
);
93 /*******************************************************************************
95 * FUNCTION: acpi_ps_get_aml_opcode
97 * PARAMETERS: walk_state - Current state
101 * DESCRIPTION: Extract the next AML opcode from the input stream.
103 ******************************************************************************/
105 static acpi_status
acpi_ps_get_aml_opcode(struct acpi_walk_state
*walk_state
)
108 ACPI_FUNCTION_TRACE_PTR(ps_get_aml_opcode
, walk_state
);
110 walk_state
->aml_offset
=
111 (u32
) ACPI_PTR_DIFF(walk_state
->parser_state
.aml
,
112 walk_state
->parser_state
.aml_start
);
113 walk_state
->opcode
= acpi_ps_peek_opcode(&(walk_state
->parser_state
));
116 * First cut to determine what we have found:
117 * 1) A valid AML opcode
119 * 3) An unknown/invalid opcode
121 walk_state
->op_info
= acpi_ps_get_opcode_info(walk_state
->opcode
);
123 switch (walk_state
->op_info
->class) {
124 case AML_CLASS_ASCII
:
125 case AML_CLASS_PREFIX
:
127 * Starts with a valid prefix or ASCII char, this is a name
128 * string. Convert the bare name string to a namepath.
130 walk_state
->opcode
= AML_INT_NAMEPATH_OP
;
131 walk_state
->arg_types
= ARGP_NAMESTRING
;
134 case AML_CLASS_UNKNOWN
:
136 /* The opcode is unrecognized. Just skip unknown opcodes */
139 "Found unknown opcode %X at AML address %p offset %X, ignoring",
140 walk_state
->opcode
, walk_state
->parser_state
.aml
,
141 walk_state
->aml_offset
));
143 ACPI_DUMP_BUFFER(walk_state
->parser_state
.aml
, 128);
145 /* Assume one-byte bad opcode */
147 walk_state
->parser_state
.aml
++;
148 return_ACPI_STATUS(AE_CTRL_PARSE_CONTINUE
);
152 /* Found opcode info, this is a normal opcode */
154 walk_state
->parser_state
.aml
+=
155 acpi_ps_get_opcode_size(walk_state
->opcode
);
156 walk_state
->arg_types
= walk_state
->op_info
->parse_args
;
160 return_ACPI_STATUS(AE_OK
);
163 /*******************************************************************************
165 * FUNCTION: acpi_ps_build_named_op
167 * PARAMETERS: walk_state - Current state
168 * aml_op_start - Begin of named Op in AML
169 * unnamed_op - Early Op (not a named Op)
174 * DESCRIPTION: Parse a named Op
176 ******************************************************************************/
179 acpi_ps_build_named_op(struct acpi_walk_state
*walk_state
,
181 union acpi_parse_object
*unnamed_op
,
182 union acpi_parse_object
**op
)
184 acpi_status status
= AE_OK
;
185 union acpi_parse_object
*arg
= NULL
;
187 ACPI_FUNCTION_TRACE_PTR(ps_build_named_op
, walk_state
);
189 unnamed_op
->common
.value
.arg
= NULL
;
190 unnamed_op
->common
.arg_list_length
= 0;
191 unnamed_op
->common
.aml_opcode
= walk_state
->opcode
;
194 * Get and append arguments until we find the node that contains
195 * the name (the type ARGP_NAME).
197 while (GET_CURRENT_ARG_TYPE(walk_state
->arg_types
) &&
198 (GET_CURRENT_ARG_TYPE(walk_state
->arg_types
) != ARGP_NAME
)) {
200 acpi_ps_get_next_arg(walk_state
,
201 &(walk_state
->parser_state
),
202 GET_CURRENT_ARG_TYPE(walk_state
->
204 if (ACPI_FAILURE(status
)) {
205 return_ACPI_STATUS(status
);
208 acpi_ps_append_arg(unnamed_op
, arg
);
209 INCREMENT_ARG_LIST(walk_state
->arg_types
);
213 * Make sure that we found a NAME and didn't run out of arguments
215 if (!GET_CURRENT_ARG_TYPE(walk_state
->arg_types
)) {
216 return_ACPI_STATUS(AE_AML_NO_OPERAND
);
219 /* We know that this arg is a name, move to next arg */
221 INCREMENT_ARG_LIST(walk_state
->arg_types
);
224 * Find the object. This will either insert the object into
225 * the namespace or simply look it up
227 walk_state
->op
= NULL
;
229 status
= walk_state
->descending_callback(walk_state
, op
);
230 if (ACPI_FAILURE(status
)) {
231 ACPI_EXCEPTION((AE_INFO
, status
, "During name lookup/catalog"));
232 return_ACPI_STATUS(status
);
236 return_ACPI_STATUS(AE_CTRL_PARSE_CONTINUE
);
239 status
= acpi_ps_next_parse_state(walk_state
, *op
, status
);
240 if (ACPI_FAILURE(status
)) {
241 if (status
== AE_CTRL_PENDING
) {
242 return_ACPI_STATUS(AE_CTRL_PARSE_PENDING
);
244 return_ACPI_STATUS(status
);
247 acpi_ps_append_arg(*op
, unnamed_op
->common
.value
.arg
);
250 if ((*op
)->common
.aml_opcode
== AML_REGION_OP
||
251 (*op
)->common
.aml_opcode
== AML_DATA_REGION_OP
) {
253 * Defer final parsing of an operation_region body, because we don't
254 * have enough info in the first pass to parse it correctly (i.e.,
255 * there may be method calls within the term_arg elements of the body.)
257 * However, we must continue parsing because the opregion is not a
258 * standalone package -- we don't know where the end is at this point.
260 * (Length is unknown until parse of the body complete)
262 (*op
)->named
.data
= aml_op_start
;
263 (*op
)->named
.length
= 0;
266 return_ACPI_STATUS(AE_OK
);
269 /*******************************************************************************
271 * FUNCTION: acpi_ps_create_op
273 * PARAMETERS: walk_state - Current state
274 * aml_op_start - Op start in AML
275 * new_op - Returned Op
279 * DESCRIPTION: Get Op from AML
281 ******************************************************************************/
284 acpi_ps_create_op(struct acpi_walk_state
*walk_state
,
285 u8
* aml_op_start
, union acpi_parse_object
**new_op
)
287 acpi_status status
= AE_OK
;
288 union acpi_parse_object
*op
;
289 union acpi_parse_object
*named_op
= NULL
;
290 union acpi_parse_object
*parent_scope
;
292 const struct acpi_opcode_info
*op_info
;
294 ACPI_FUNCTION_TRACE_PTR(ps_create_op
, walk_state
);
296 status
= acpi_ps_get_aml_opcode(walk_state
);
297 if (status
== AE_CTRL_PARSE_CONTINUE
) {
298 return_ACPI_STATUS(AE_CTRL_PARSE_CONTINUE
);
301 /* Create Op structure and append to parent's argument list */
303 walk_state
->op_info
= acpi_ps_get_opcode_info(walk_state
->opcode
);
304 op
= acpi_ps_alloc_op(walk_state
->opcode
);
306 return_ACPI_STATUS(AE_NO_MEMORY
);
309 if (walk_state
->op_info
->flags
& AML_NAMED
) {
311 acpi_ps_build_named_op(walk_state
, aml_op_start
, op
,
314 if (ACPI_FAILURE(status
)) {
315 return_ACPI_STATUS(status
);
319 return_ACPI_STATUS(AE_OK
);
322 /* Not a named opcode, just allocate Op and append to parent */
324 if (walk_state
->op_info
->flags
& AML_CREATE
) {
326 * Backup to beginning of create_xXXfield declaration
327 * body_length is unknown until we parse the body
329 op
->named
.data
= aml_op_start
;
330 op
->named
.length
= 0;
333 if (walk_state
->opcode
== AML_BANK_FIELD_OP
) {
335 * Backup to beginning of bank_field declaration
336 * body_length is unknown until we parse the body
338 op
->named
.data
= aml_op_start
;
339 op
->named
.length
= 0;
342 parent_scope
= acpi_ps_get_parent_scope(&(walk_state
->parser_state
));
343 acpi_ps_append_arg(parent_scope
, op
);
347 acpi_ps_get_opcode_info(parent_scope
->common
.aml_opcode
);
348 if (op_info
->flags
& AML_HAS_TARGET
) {
350 acpi_ps_get_argument_count(op_info
->type
);
351 if (parent_scope
->common
.arg_list_length
>
353 op
->common
.flags
|= ACPI_PARSEOP_TARGET
;
355 } else if (parent_scope
->common
.aml_opcode
== AML_INCREMENT_OP
) {
356 op
->common
.flags
|= ACPI_PARSEOP_TARGET
;
360 if (walk_state
->descending_callback
!= NULL
) {
362 * Find the object. This will either insert the object into
363 * the namespace or simply look it up
365 walk_state
->op
= *new_op
= op
;
367 status
= walk_state
->descending_callback(walk_state
, &op
);
368 status
= acpi_ps_next_parse_state(walk_state
, op
, status
);
369 if (status
== AE_CTRL_PENDING
) {
370 status
= AE_CTRL_PARSE_PENDING
;
374 return_ACPI_STATUS(status
);
377 /*******************************************************************************
379 * FUNCTION: acpi_ps_get_arguments
381 * PARAMETERS: walk_state - Current state
382 * aml_op_start - Op start in AML
387 * DESCRIPTION: Get arguments for passed Op.
389 ******************************************************************************/
392 acpi_ps_get_arguments(struct acpi_walk_state
*walk_state
,
393 u8
* aml_op_start
, union acpi_parse_object
*op
)
395 acpi_status status
= AE_OK
;
396 union acpi_parse_object
*arg
= NULL
;
397 const struct acpi_opcode_info
*op_info
;
399 ACPI_FUNCTION_TRACE_PTR(ps_get_arguments
, walk_state
);
401 switch (op
->common
.aml_opcode
) {
402 case AML_BYTE_OP
: /* AML_BYTEDATA_ARG */
403 case AML_WORD_OP
: /* AML_WORDDATA_ARG */
404 case AML_DWORD_OP
: /* AML_DWORDATA_ARG */
405 case AML_QWORD_OP
: /* AML_QWORDATA_ARG */
406 case AML_STRING_OP
: /* AML_ASCIICHARLIST_ARG */
408 /* Fill in constant or string argument directly */
410 acpi_ps_get_next_simple_arg(&(walk_state
->parser_state
),
411 GET_CURRENT_ARG_TYPE(walk_state
->
416 case AML_INT_NAMEPATH_OP
: /* AML_NAMESTRING_ARG */
419 acpi_ps_get_next_namepath(walk_state
,
420 &(walk_state
->parser_state
), op
,
422 if (ACPI_FAILURE(status
)) {
423 return_ACPI_STATUS(status
);
426 walk_state
->arg_types
= 0;
431 * Op is not a constant or string, append each argument to the Op
433 while (GET_CURRENT_ARG_TYPE(walk_state
->arg_types
)
434 && !walk_state
->arg_count
) {
435 walk_state
->aml_offset
=
436 (u32
) ACPI_PTR_DIFF(walk_state
->parser_state
.aml
,
437 walk_state
->parser_state
.
441 acpi_ps_get_next_arg(walk_state
,
442 &(walk_state
->parser_state
),
444 (walk_state
->arg_types
), &arg
);
445 if (ACPI_FAILURE(status
)) {
446 return_ACPI_STATUS(status
);
450 arg
->common
.aml_offset
= walk_state
->aml_offset
;
451 acpi_ps_append_arg(op
, arg
);
454 INCREMENT_ARG_LIST(walk_state
->arg_types
);
458 * Handle executable code at "module-level". This refers to
459 * executable opcodes that appear outside of any control method.
461 if ((walk_state
->pass_number
<= ACPI_IMODE_LOAD_PASS2
) &&
462 ((walk_state
->parse_flags
& ACPI_PARSE_DISASSEMBLE
) == 0)) {
464 * We want to skip If/Else/While constructs during Pass1 because we
465 * want to actually conditionally execute the code during Pass2.
467 * Except for disassembly, where we always want to walk the
468 * If/Else/While packages
470 switch (op
->common
.aml_opcode
) {
476 * Currently supported module-level opcodes are:
477 * IF/ELSE/WHILE. These appear to be the most common,
478 * and easiest to support since they open an AML
481 if (walk_state
->pass_number
==
482 ACPI_IMODE_LOAD_PASS1
) {
483 acpi_ps_link_module_code(op
->common
.
495 ACPI_DEBUG_PRINT((ACPI_DB_PARSE
,
496 "Pass1: Skipping an If/Else/While body\n"));
498 /* Skip body of if/else/while in pass 1 */
500 walk_state
->parser_state
.aml
=
501 walk_state
->parser_state
.pkg_end
;
502 walk_state
->arg_count
= 0;
507 * Check for an unsupported executable opcode at module
508 * level. We must be in PASS1, the parent must be a SCOPE,
509 * The opcode class must be EXECUTE, and the opcode must
510 * not be an argument to another opcode.
512 if ((walk_state
->pass_number
==
513 ACPI_IMODE_LOAD_PASS1
)
514 && (op
->common
.parent
->common
.aml_opcode
==
517 acpi_ps_get_opcode_info(op
->common
.
519 if ((op_info
->class ==
520 AML_CLASS_EXECUTE
) && (!arg
)) {
521 ACPI_WARNING((AE_INFO
,
522 "Detected an unsupported executable opcode "
523 "at module-level: [0x%.4X] at table offset 0x%.4X",
524 op
->common
.aml_opcode
,
525 (u32
)((aml_op_start
- walk_state
->parser_state
.aml_start
)
526 + sizeof(struct acpi_table_header
))));
533 /* Special processing for certain opcodes */
535 switch (op
->common
.aml_opcode
) {
538 * Skip parsing of control method because we don't have enough
539 * info in the first pass to parse it correctly.
541 * Save the length and address of the body
543 op
->named
.data
= walk_state
->parser_state
.aml
;
544 op
->named
.length
= (u32
)
545 (walk_state
->parser_state
.pkg_end
-
546 walk_state
->parser_state
.aml
);
548 /* Skip body of method */
550 walk_state
->parser_state
.aml
=
551 walk_state
->parser_state
.pkg_end
;
552 walk_state
->arg_count
= 0;
557 case AML_VAR_PACKAGE_OP
:
559 if ((op
->common
.parent
) &&
560 (op
->common
.parent
->common
.aml_opcode
==
562 && (walk_state
->pass_number
<=
563 ACPI_IMODE_LOAD_PASS2
)) {
565 * Skip parsing of Buffers and Packages because we don't have
566 * enough info in the first pass to parse them correctly.
568 op
->named
.data
= aml_op_start
;
569 op
->named
.length
= (u32
)
570 (walk_state
->parser_state
.pkg_end
-
575 walk_state
->parser_state
.aml
=
576 walk_state
->parser_state
.pkg_end
;
577 walk_state
->arg_count
= 0;
583 if (walk_state
->control_state
) {
584 walk_state
->control_state
->control
.package_end
=
585 walk_state
->parser_state
.pkg_end
;
591 /* No action for all other opcodes */
598 return_ACPI_STATUS(AE_OK
);
601 /*******************************************************************************
603 * FUNCTION: acpi_ps_link_module_code
605 * PARAMETERS: parent_op - Parent parser op
606 * aml_start - Pointer to the AML
607 * aml_length - Length of executable AML
608 * owner_id - owner_id of module level code
612 * DESCRIPTION: Wrap the module-level code with a method object and link the
613 * object to the global list. Note, the mutex field of the method
614 * object is used to link multiple module-level code objects.
616 ******************************************************************************/
619 acpi_ps_link_module_code(union acpi_parse_object
*parent_op
,
620 u8
*aml_start
, u32 aml_length
, acpi_owner_id owner_id
)
622 union acpi_operand_object
*prev
;
623 union acpi_operand_object
*next
;
624 union acpi_operand_object
*method_obj
;
625 struct acpi_namespace_node
*parent_node
;
627 /* Get the tail of the list */
629 prev
= next
= acpi_gbl_module_code_list
;
632 next
= next
->method
.mutex
;
636 * Insert the module level code into the list. Merge it if it is
637 * adjacent to the previous element.
640 ((prev
->method
.aml_start
+ prev
->method
.aml_length
) != aml_start
)) {
642 /* Create, initialize, and link a new temporary method object */
644 method_obj
= acpi_ut_create_internal_object(ACPI_TYPE_METHOD
);
649 if (parent_op
->common
.node
) {
650 parent_node
= parent_op
->common
.node
;
652 parent_node
= acpi_gbl_root_node
;
655 method_obj
->method
.aml_start
= aml_start
;
656 method_obj
->method
.aml_length
= aml_length
;
657 method_obj
->method
.owner_id
= owner_id
;
658 method_obj
->method
.flags
|= AOPOBJ_MODULE_LEVEL
;
661 * Save the parent node in next_object. This is cheating, but we
662 * don't want to expand the method object.
664 method_obj
->method
.next_object
=
665 ACPI_CAST_PTR(union acpi_operand_object
, parent_node
);
668 acpi_gbl_module_code_list
= method_obj
;
670 prev
->method
.mutex
= method_obj
;
673 prev
->method
.aml_length
+= aml_length
;
677 /*******************************************************************************
679 * FUNCTION: acpi_ps_complete_op
681 * PARAMETERS: walk_state - Current state
683 * Status - Parse status before complete Op
687 * DESCRIPTION: Complete Op
689 ******************************************************************************/
692 acpi_ps_complete_op(struct acpi_walk_state
*walk_state
,
693 union acpi_parse_object
**op
, acpi_status status
)
697 ACPI_FUNCTION_TRACE_PTR(ps_complete_op
, walk_state
);
700 * Finished one argument of the containing scope
702 walk_state
->parser_state
.scope
->parse_scope
.arg_count
--;
704 /* Close this Op (will result in parse subtree deletion) */
706 status2
= acpi_ps_complete_this_op(walk_state
, *op
);
707 if (ACPI_FAILURE(status2
)) {
708 return_ACPI_STATUS(status2
);
717 case AE_CTRL_TRANSFER
:
719 /* We are about to transfer to a called method */
721 walk_state
->prev_op
= NULL
;
722 walk_state
->prev_arg_types
= walk_state
->arg_types
;
723 return_ACPI_STATUS(status
);
727 acpi_ps_pop_scope(&(walk_state
->parser_state
), op
,
728 &walk_state
->arg_types
,
729 &walk_state
->arg_count
);
732 walk_state
->op
= *op
;
733 walk_state
->op_info
=
734 acpi_ps_get_opcode_info((*op
)->common
.aml_opcode
);
735 walk_state
->opcode
= (*op
)->common
.aml_opcode
;
737 status
= walk_state
->ascending_callback(walk_state
);
739 acpi_ps_next_parse_state(walk_state
, *op
, status
);
741 status2
= acpi_ps_complete_this_op(walk_state
, *op
);
742 if (ACPI_FAILURE(status2
)) {
743 return_ACPI_STATUS(status2
);
751 case AE_CTRL_CONTINUE
:
753 /* Pop off scopes until we find the While */
755 while (!(*op
) || ((*op
)->common
.aml_opcode
!= AML_WHILE_OP
)) {
756 acpi_ps_pop_scope(&(walk_state
->parser_state
), op
,
757 &walk_state
->arg_types
,
758 &walk_state
->arg_count
);
761 /* Close this iteration of the While loop */
763 walk_state
->op
= *op
;
764 walk_state
->op_info
=
765 acpi_ps_get_opcode_info((*op
)->common
.aml_opcode
);
766 walk_state
->opcode
= (*op
)->common
.aml_opcode
;
768 status
= walk_state
->ascending_callback(walk_state
);
769 status
= acpi_ps_next_parse_state(walk_state
, *op
, status
);
771 status2
= acpi_ps_complete_this_op(walk_state
, *op
);
772 if (ACPI_FAILURE(status2
)) {
773 return_ACPI_STATUS(status2
);
779 case AE_CTRL_TERMINATE
:
785 acpi_ps_complete_this_op(walk_state
, *op
);
786 if (ACPI_FAILURE(status2
)) {
787 return_ACPI_STATUS(status2
);
790 acpi_ut_delete_generic_state
791 (acpi_ut_pop_generic_state
792 (&walk_state
->control_state
));
795 acpi_ps_pop_scope(&(walk_state
->parser_state
), op
,
796 &walk_state
->arg_types
,
797 &walk_state
->arg_count
);
801 return_ACPI_STATUS(AE_OK
);
803 default: /* All other non-AE_OK status */
808 acpi_ps_complete_this_op(walk_state
, *op
);
809 if (ACPI_FAILURE(status2
)) {
810 return_ACPI_STATUS(status2
);
814 acpi_ps_pop_scope(&(walk_state
->parser_state
), op
,
815 &walk_state
->arg_types
,
816 &walk_state
->arg_count
);
822 * TBD: Cleanup parse ops on error
825 acpi_ps_pop_scope(parser_state
, op
,
826 &walk_state
->arg_types
,
827 &walk_state
->arg_count
);
830 walk_state
->prev_op
= NULL
;
831 walk_state
->prev_arg_types
= walk_state
->arg_types
;
832 return_ACPI_STATUS(status
);
835 /* This scope complete? */
837 if (acpi_ps_has_completed_scope(&(walk_state
->parser_state
))) {
838 acpi_ps_pop_scope(&(walk_state
->parser_state
), op
,
839 &walk_state
->arg_types
,
840 &walk_state
->arg_count
);
841 ACPI_DEBUG_PRINT((ACPI_DB_PARSE
, "Popped scope, Op=%p\n", *op
));
846 ACPI_PREEMPTION_POINT();
848 return_ACPI_STATUS(AE_OK
);
851 /*******************************************************************************
853 * FUNCTION: acpi_ps_complete_final_op
855 * PARAMETERS: walk_state - Current state
857 * Status - Current parse status before complete last
862 * DESCRIPTION: Complete last Op.
864 ******************************************************************************/
867 acpi_ps_complete_final_op(struct acpi_walk_state
*walk_state
,
868 union acpi_parse_object
*op
, acpi_status status
)
872 ACPI_FUNCTION_TRACE_PTR(ps_complete_final_op
, walk_state
);
875 * Complete the last Op (if not completed), and clear the scope stack.
876 * It is easily possible to end an AML "package" with an unbounded number
877 * of open scopes (such as when several ASL blocks are closed with
878 * sequential closing braces). We want to terminate each one cleanly.
880 ACPI_DEBUG_PRINT((ACPI_DB_PARSE
, "AML package complete at Op %p\n",
884 if (walk_state
->ascending_callback
!= NULL
) {
886 walk_state
->op_info
=
887 acpi_ps_get_opcode_info(op
->common
.
889 walk_state
->opcode
= op
->common
.aml_opcode
;
892 walk_state
->ascending_callback(walk_state
);
894 acpi_ps_next_parse_state(walk_state
, op
,
896 if (status
== AE_CTRL_PENDING
) {
898 acpi_ps_complete_op(walk_state
, &op
,
900 if (ACPI_FAILURE(status
)) {
901 return_ACPI_STATUS(status
);
905 if (status
== AE_CTRL_TERMINATE
) {
912 acpi_ps_complete_this_op
932 return_ACPI_STATUS(status
);
935 else if (ACPI_FAILURE(status
)) {
937 /* First error is most important */
940 acpi_ps_complete_this_op(walk_state
,
942 return_ACPI_STATUS(status
);
946 status2
= acpi_ps_complete_this_op(walk_state
, op
);
947 if (ACPI_FAILURE(status2
)) {
948 return_ACPI_STATUS(status2
);
952 acpi_ps_pop_scope(&(walk_state
->parser_state
), &op
,
953 &walk_state
->arg_types
,
954 &walk_state
->arg_count
);
958 return_ACPI_STATUS(status
);
961 /*******************************************************************************
963 * FUNCTION: acpi_ps_parse_loop
965 * PARAMETERS: walk_state - Current state
969 * DESCRIPTION: Parse AML (pointed to by the current parser state) and return
972 ******************************************************************************/
974 acpi_status
acpi_ps_parse_loop(struct acpi_walk_state
*walk_state
)
976 acpi_status status
= AE_OK
;
977 union acpi_parse_object
*op
= NULL
; /* current op */
978 struct acpi_parse_state
*parser_state
;
979 u8
*aml_op_start
= NULL
;
981 ACPI_FUNCTION_TRACE_PTR(ps_parse_loop
, walk_state
);
983 if (walk_state
->descending_callback
== NULL
) {
984 return_ACPI_STATUS(AE_BAD_PARAMETER
);
987 parser_state
= &walk_state
->parser_state
;
988 walk_state
->arg_types
= 0;
990 #if (!defined (ACPI_NO_METHOD_EXECUTION) && !defined (ACPI_CONSTANT_EVAL_ONLY))
992 if (walk_state
->walk_type
& ACPI_WALK_METHOD_RESTART
) {
994 /* We are restarting a preempted control method */
996 if (acpi_ps_has_completed_scope(parser_state
)) {
998 * We must check if a predicate to an IF or WHILE statement
1001 if ((parser_state
->scope
->parse_scope
.op
) &&
1002 ((parser_state
->scope
->parse_scope
.op
->common
.
1003 aml_opcode
== AML_IF_OP
)
1004 || (parser_state
->scope
->parse_scope
.op
->common
.
1005 aml_opcode
== AML_WHILE_OP
))
1006 && (walk_state
->control_state
)
1007 && (walk_state
->control_state
->common
.state
==
1008 ACPI_CONTROL_PREDICATE_EXECUTING
)) {
1010 * A predicate was just completed, get the value of the
1011 * predicate and branch based on that value
1013 walk_state
->op
= NULL
;
1015 acpi_ds_get_predicate_value(walk_state
,
1018 if (ACPI_FAILURE(status
)
1019 && ((status
& AE_CODE_MASK
) !=
1021 if (status
== AE_AML_NO_RETURN_VALUE
) {
1022 ACPI_EXCEPTION((AE_INFO
, status
,
1023 "Invoked method did not return a value"));
1027 ACPI_EXCEPTION((AE_INFO
, status
,
1028 "GetPredicate Failed"));
1029 return_ACPI_STATUS(status
);
1033 acpi_ps_next_parse_state(walk_state
, op
,
1037 acpi_ps_pop_scope(parser_state
, &op
,
1038 &walk_state
->arg_types
,
1039 &walk_state
->arg_count
);
1040 ACPI_DEBUG_PRINT((ACPI_DB_PARSE
,
1041 "Popped scope, Op=%p\n", op
));
1042 } else if (walk_state
->prev_op
) {
1044 /* We were in the middle of an op */
1046 op
= walk_state
->prev_op
;
1047 walk_state
->arg_types
= walk_state
->prev_arg_types
;
1052 /* Iterative parsing loop, while there is more AML to process: */
1054 while ((parser_state
->aml
< parser_state
->aml_end
) || (op
)) {
1055 aml_op_start
= parser_state
->aml
;
1058 acpi_ps_create_op(walk_state
, aml_op_start
, &op
);
1059 if (ACPI_FAILURE(status
)) {
1060 if (status
== AE_CTRL_PARSE_CONTINUE
) {
1064 if (status
== AE_CTRL_PARSE_PENDING
) {
1069 acpi_ps_complete_op(walk_state
, &op
,
1071 if (ACPI_FAILURE(status
)) {
1072 return_ACPI_STATUS(status
);
1078 op
->common
.aml_offset
= walk_state
->aml_offset
;
1080 if (walk_state
->op_info
) {
1081 ACPI_DEBUG_PRINT((ACPI_DB_PARSE
,
1082 "Opcode %4.4X [%s] Op %p Aml %p AmlOffset %5.5X\n",
1083 (u32
) op
->common
.aml_opcode
,
1084 walk_state
->op_info
->name
, op
,
1086 op
->common
.aml_offset
));
1091 * Start arg_count at zero because we don't know if there are
1094 walk_state
->arg_count
= 0;
1096 /* Are there any arguments that must be processed? */
1098 if (walk_state
->arg_types
) {
1103 acpi_ps_get_arguments(walk_state
, aml_op_start
, op
);
1104 if (ACPI_FAILURE(status
)) {
1106 acpi_ps_complete_op(walk_state
, &op
,
1108 if (ACPI_FAILURE(status
)) {
1109 return_ACPI_STATUS(status
);
1116 /* Check for arguments that need to be processed */
1118 if (walk_state
->arg_count
) {
1120 * There are arguments (complex ones), push Op and
1121 * prepare for argument
1123 status
= acpi_ps_push_scope(parser_state
, op
,
1124 walk_state
->arg_types
,
1125 walk_state
->arg_count
);
1126 if (ACPI_FAILURE(status
)) {
1128 acpi_ps_complete_op(walk_state
, &op
,
1130 if (ACPI_FAILURE(status
)) {
1131 return_ACPI_STATUS(status
);
1142 * All arguments have been processed -- Op is complete,
1145 walk_state
->op_info
=
1146 acpi_ps_get_opcode_info(op
->common
.aml_opcode
);
1147 if (walk_state
->op_info
->flags
& AML_NAMED
) {
1148 if (acpi_gbl_depth
) {
1152 if (op
->common
.aml_opcode
== AML_REGION_OP
||
1153 op
->common
.aml_opcode
== AML_DATA_REGION_OP
) {
1155 * Skip parsing of control method or opregion body,
1156 * because we don't have enough info in the first pass
1157 * to parse them correctly.
1159 * Completed parsing an op_region declaration, we now
1163 (u32
) (parser_state
->aml
- op
->named
.data
);
1167 if (walk_state
->op_info
->flags
& AML_CREATE
) {
1169 * Backup to beginning of create_xXXfield declaration (1 for
1172 * body_length is unknown until we parse the body
1175 (u32
) (parser_state
->aml
- op
->named
.data
);
1178 if (op
->common
.aml_opcode
== AML_BANK_FIELD_OP
) {
1180 * Backup to beginning of bank_field declaration
1182 * body_length is unknown until we parse the body
1185 (u32
) (parser_state
->aml
- op
->named
.data
);
1188 /* This op complete, notify the dispatcher */
1190 if (walk_state
->ascending_callback
!= NULL
) {
1191 walk_state
->op
= op
;
1192 walk_state
->opcode
= op
->common
.aml_opcode
;
1194 status
= walk_state
->ascending_callback(walk_state
);
1196 acpi_ps_next_parse_state(walk_state
, op
, status
);
1197 if (status
== AE_CTRL_PENDING
) {
1202 status
= acpi_ps_complete_op(walk_state
, &op
, status
);
1203 if (ACPI_FAILURE(status
)) {
1204 return_ACPI_STATUS(status
);
1207 } /* while parser_state->Aml */
1209 status
= acpi_ps_complete_final_op(walk_state
, op
, status
);
1210 return_ACPI_STATUS(status
);