1 /******************************************************************************
3 * Module Name: pstree - Parser op tree manipulation/traversal/search
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
49 #define _COMPONENT ACPI_PARSER
50 ACPI_MODULE_NAME("pstree")
52 /* Local prototypes */
53 #ifdef ACPI_OBSOLETE_FUNCTIONS
54 union acpi_parse_object
*acpi_ps_get_child(union acpi_parse_object
*op
);
57 /*******************************************************************************
59 * FUNCTION: acpi_ps_get_arg
61 * PARAMETERS: op - Get an argument for this op
62 * argn - Nth argument to get
64 * RETURN: The argument (as an Op object). NULL if argument does not exist
66 * DESCRIPTION: Get the specified op's argument.
68 ******************************************************************************/
70 union acpi_parse_object
*acpi_ps_get_arg(union acpi_parse_object
*op
, u32 argn
)
72 union acpi_parse_object
*arg
= NULL
;
73 const struct acpi_opcode_info
*op_info
;
75 ACPI_FUNCTION_ENTRY();
78 if (Op->Common.aml_opcode == AML_INT_CONNECTION_OP)
80 return (Op->Common.Value.Arg);
83 /* Get the info structure for this opcode */
85 op_info
= acpi_ps_get_opcode_info(op
->common
.aml_opcode
);
86 if (op_info
->class == AML_CLASS_UNKNOWN
) {
88 /* Invalid opcode or ASCII character */
93 /* Check if this opcode requires argument sub-objects */
95 if (!(op_info
->flags
& AML_HAS_ARGS
)) {
97 /* Has no linked argument objects */
102 /* Get the requested argument object */
104 arg
= op
->common
.value
.arg
;
105 while (arg
&& argn
) {
107 arg
= arg
->common
.next
;
113 /*******************************************************************************
115 * FUNCTION: acpi_ps_append_arg
117 * PARAMETERS: op - Append an argument to this Op.
118 * arg - Argument Op to append
122 * DESCRIPTION: Append an argument to an op's argument list (a NULL arg is OK)
124 ******************************************************************************/
127 acpi_ps_append_arg(union acpi_parse_object
*op
, union acpi_parse_object
*arg
)
129 union acpi_parse_object
*prev_arg
;
130 const struct acpi_opcode_info
*op_info
;
132 ACPI_FUNCTION_ENTRY();
138 /* Get the info structure for this opcode */
140 op_info
= acpi_ps_get_opcode_info(op
->common
.aml_opcode
);
141 if (op_info
->class == AML_CLASS_UNKNOWN
) {
145 ACPI_ERROR((AE_INFO
, "Invalid AML Opcode: 0x%2.2X",
146 op
->common
.aml_opcode
));
150 /* Check if this opcode requires argument sub-objects */
152 if (!(op_info
->flags
& AML_HAS_ARGS
)) {
154 /* Has no linked argument objects */
159 /* Append the argument to the linked argument list */
161 if (op
->common
.value
.arg
) {
163 /* Append to existing argument list */
165 prev_arg
= op
->common
.value
.arg
;
166 while (prev_arg
->common
.next
) {
167 prev_arg
= prev_arg
->common
.next
;
169 prev_arg
->common
.next
= arg
;
171 /* No argument list, this will be the first argument */
173 op
->common
.value
.arg
= arg
;
176 /* Set the parent in this arg and any args linked after it */
179 arg
->common
.parent
= op
;
180 arg
= arg
->common
.next
;
182 op
->common
.arg_list_length
++;
186 #ifdef ACPI_FUTURE_USAGE
187 /*******************************************************************************
189 * FUNCTION: acpi_ps_get_depth_next
191 * PARAMETERS: origin - Root of subtree to search
192 * op - Last (previous) Op that was found
194 * RETURN: Next Op found in the search.
196 * DESCRIPTION: Get next op in tree (walking the tree in depth-first order)
197 * Return NULL when reaching "origin" or when walking up from root
199 ******************************************************************************/
201 union acpi_parse_object
*acpi_ps_get_depth_next(union acpi_parse_object
*origin
,
202 union acpi_parse_object
*op
)
204 union acpi_parse_object
*next
= NULL
;
205 union acpi_parse_object
*parent
;
206 union acpi_parse_object
*arg
;
208 ACPI_FUNCTION_ENTRY();
214 /* Look for an argument or child */
216 next
= acpi_ps_get_arg(op
, 0);
221 /* Look for a sibling */
223 next
= op
->common
.next
;
228 /* Look for a sibling of parent */
230 parent
= op
->common
.parent
;
233 arg
= acpi_ps_get_arg(parent
, 0);
234 while (arg
&& (arg
!= origin
) && (arg
!= op
)) {
235 arg
= arg
->common
.next
;
240 /* Reached parent of origin, end search */
245 if (parent
->common
.next
) {
247 /* Found sibling of parent */
249 return (parent
->common
.next
);
253 parent
= parent
->common
.parent
;
259 #ifdef ACPI_OBSOLETE_FUNCTIONS
260 /*******************************************************************************
262 * FUNCTION: acpi_ps_get_child
264 * PARAMETERS: op - Get the child of this Op
266 * RETURN: Child Op, Null if none is found.
268 * DESCRIPTION: Get op's children or NULL if none
270 ******************************************************************************/
272 union acpi_parse_object
*acpi_ps_get_child(union acpi_parse_object
*op
)
274 union acpi_parse_object
*child
= NULL
;
276 ACPI_FUNCTION_ENTRY();
278 switch (op
->common
.aml_opcode
) {
282 case AML_THERMAL_ZONE_OP
:
283 case AML_INT_METHODCALL_OP
:
285 child
= acpi_ps_get_arg(op
, 0);
295 child
= acpi_ps_get_arg(op
, 1);
298 case AML_POWER_RES_OP
:
299 case AML_INDEX_FIELD_OP
:
301 child
= acpi_ps_get_arg(op
, 2);
304 case AML_PROCESSOR_OP
:
305 case AML_BANK_FIELD_OP
:
307 child
= acpi_ps_get_arg(op
, 3);
312 /* All others have no children */
320 #endif /* ACPI_FUTURE_USAGE */