blob: 1dd355ddd182da6b2a903b3579589e23564cb35d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: pstree - Parser op tree manipulation/traversal/search
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acparser.h>
46#include <acpi/amlcode.h>
47
48#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("pstree")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Robert Moore44f6c012005-04-18 22:49:35 -040051/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040052#ifdef ACPI_OBSOLETE_FUNCTIONS
Len Brown4be44fc2005-08-05 00:44:28 -040053union acpi_parse_object *acpi_ps_get_child(union acpi_parse_object *op);
Robert Moore44f6c012005-04-18 22:49:35 -040054#endif
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*******************************************************************************
57 *
58 * FUNCTION: acpi_ps_get_arg
59 *
60 * PARAMETERS: Op - Get an argument for this op
61 * Argn - Nth argument to get
62 *
Robert Moore44f6c012005-04-18 22:49:35 -040063 * RETURN: The argument (as an Op object). NULL if argument does not exist
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
65 * DESCRIPTION: Get the specified op's argument.
66 *
67 ******************************************************************************/
68
Len Brown4be44fc2005-08-05 00:44:28 -040069union acpi_parse_object *acpi_ps_get_arg(union acpi_parse_object *op, u32 argn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Len Brown4be44fc2005-08-05 00:44:28 -040071 union acpi_parse_object *arg = NULL;
72 const struct acpi_opcode_info *op_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Len Brown4be44fc2005-08-05 00:44:28 -040074 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 /* Get the info structure for this opcode */
77
Len Brown4be44fc2005-08-05 00:44:28 -040078 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (op_info->class == AML_CLASS_UNKNOWN) {
Bob Moore52fc0b02006-10-02 00:00:00 -040080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* Invalid opcode or ASCII character */
82
83 return (NULL);
84 }
85
86 /* Check if this opcode requires argument sub-objects */
87
88 if (!(op_info->flags & AML_HAS_ARGS)) {
Bob Moore52fc0b02006-10-02 00:00:00 -040089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* Has no linked argument objects */
91
92 return (NULL);
93 }
94
95 /* Get the requested argument object */
96
97 arg = op->common.value.arg;
98 while (arg && argn) {
99 argn--;
100 arg = arg->common.next;
101 }
102
103 return (arg);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*******************************************************************************
107 *
108 * FUNCTION: acpi_ps_append_arg
109 *
110 * PARAMETERS: Op - Append an argument to this Op.
111 * Arg - Argument Op to append
112 *
113 * RETURN: None.
114 *
115 * DESCRIPTION: Append an argument to an op's argument list (a NULL arg is OK)
116 *
117 ******************************************************************************/
118
119void
Len Brown4be44fc2005-08-05 00:44:28 -0400120acpi_ps_append_arg(union acpi_parse_object *op, union acpi_parse_object *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Len Brown4be44fc2005-08-05 00:44:28 -0400122 union acpi_parse_object *prev_arg;
123 const struct acpi_opcode_info *op_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Len Brown4be44fc2005-08-05 00:44:28 -0400125 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 if (!op) {
128 return;
129 }
130
131 /* Get the info structure for this opcode */
132
Len Brown4be44fc2005-08-05 00:44:28 -0400133 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (op_info->class == AML_CLASS_UNKNOWN) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* Invalid opcode */
137
Bob Mooreb8e4d892006-01-27 16:43:00 -0500138 ACPI_ERROR((AE_INFO, "Invalid AML Opcode: 0x%2.2X",
139 op->common.aml_opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return;
141 }
142
143 /* Check if this opcode requires argument sub-objects */
144
145 if (!(op_info->flags & AML_HAS_ARGS)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* Has no linked argument objects */
148
149 return;
150 }
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* Append the argument to the linked argument list */
153
154 if (op->common.value.arg) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /* Append to existing argument list */
157
158 prev_arg = op->common.value.arg;
159 while (prev_arg->common.next) {
160 prev_arg = prev_arg->common.next;
161 }
162 prev_arg->common.next = arg;
Len Brown4be44fc2005-08-05 00:44:28 -0400163 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* No argument list, this will be the first argument */
165
166 op->common.value.arg = arg;
167 }
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 /* Set the parent in this arg and any args linked after it */
170
171 while (arg) {
172 arg->common.parent = op;
173 arg = arg->common.next;
Bob Moore4e3156b2008-04-10 19:06:37 +0400174
175 op->common.arg_list_length++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#ifdef ACPI_FUTURE_USAGE
Robert Moore44f6c012005-04-18 22:49:35 -0400180/*******************************************************************************
181 *
182 * FUNCTION: acpi_ps_get_depth_next
183 *
184 * PARAMETERS: Origin - Root of subtree to search
185 * Op - Last (previous) Op that was found
186 *
187 * RETURN: Next Op found in the search.
188 *
189 * DESCRIPTION: Get next op in tree (walking the tree in depth-first order)
190 * Return NULL when reaching "origin" or when walking up from root
191 *
192 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Len Brown4be44fc2005-08-05 00:44:28 -0400194union acpi_parse_object *acpi_ps_get_depth_next(union acpi_parse_object *origin,
195 union acpi_parse_object *op)
Robert Moore44f6c012005-04-18 22:49:35 -0400196{
Len Brown4be44fc2005-08-05 00:44:28 -0400197 union acpi_parse_object *next = NULL;
198 union acpi_parse_object *parent;
199 union acpi_parse_object *arg;
Robert Moore44f6c012005-04-18 22:49:35 -0400200
Len Brown4be44fc2005-08-05 00:44:28 -0400201 ACPI_FUNCTION_ENTRY();
Robert Moore44f6c012005-04-18 22:49:35 -0400202
203 if (!op) {
204 return (NULL);
205 }
206
207 /* Look for an argument or child */
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209 next = acpi_ps_get_arg(op, 0);
Robert Moore44f6c012005-04-18 22:49:35 -0400210 if (next) {
211 return (next);
212 }
213
214 /* Look for a sibling */
215
216 next = op->common.next;
217 if (next) {
218 return (next);
219 }
220
221 /* Look for a sibling of parent */
222
223 parent = op->common.parent;
224
225 while (parent) {
Len Brown4be44fc2005-08-05 00:44:28 -0400226 arg = acpi_ps_get_arg(parent, 0);
Robert Moore44f6c012005-04-18 22:49:35 -0400227 while (arg && (arg != origin) && (arg != op)) {
228 arg = arg->common.next;
229 }
230
231 if (arg == origin) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400232
Robert Moore44f6c012005-04-18 22:49:35 -0400233 /* Reached parent of origin, end search */
234
235 return (NULL);
236 }
237
238 if (parent->common.next) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400239
Robert Moore44f6c012005-04-18 22:49:35 -0400240 /* Found sibling of parent */
241
242 return (parent->common.next);
243 }
244
245 op = parent;
246 parent = parent->common.parent;
247 }
248
249 return (next);
250}
251
Robert Moore44f6c012005-04-18 22:49:35 -0400252#ifdef ACPI_OBSOLETE_FUNCTIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/*******************************************************************************
254 *
255 * FUNCTION: acpi_ps_get_child
256 *
257 * PARAMETERS: Op - Get the child of this Op
258 *
259 * RETURN: Child Op, Null if none is found.
260 *
261 * DESCRIPTION: Get op's children or NULL if none
262 *
263 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400264
Len Brown4be44fc2005-08-05 00:44:28 -0400265union acpi_parse_object *acpi_ps_get_child(union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Len Brown4be44fc2005-08-05 00:44:28 -0400267 union acpi_parse_object *child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Len Brown4be44fc2005-08-05 00:44:28 -0400269 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 switch (op->common.aml_opcode) {
272 case AML_SCOPE_OP:
273 case AML_ELSE_OP:
274 case AML_DEVICE_OP:
275 case AML_THERMAL_ZONE_OP:
276 case AML_INT_METHODCALL_OP:
277
Len Brown4be44fc2005-08-05 00:44:28 -0400278 child = acpi_ps_get_arg(op, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 case AML_BUFFER_OP:
282 case AML_PACKAGE_OP:
283 case AML_METHOD_OP:
284 case AML_IF_OP:
285 case AML_WHILE_OP:
286 case AML_FIELD_OP:
287
Len Brown4be44fc2005-08-05 00:44:28 -0400288 child = acpi_ps_get_arg(op, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 case AML_POWER_RES_OP:
292 case AML_INDEX_FIELD_OP:
293
Len Brown4be44fc2005-08-05 00:44:28 -0400294 child = acpi_ps_get_arg(op, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 break;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 case AML_PROCESSOR_OP:
298 case AML_BANK_FIELD_OP:
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300 child = acpi_ps_get_arg(op, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 default:
304 /* All others have no children */
305 break;
306 }
307
308 return (child);
309}
Robert Moore44f6c012005-04-18 22:49:35 -0400310#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400311#endif /* ACPI_FUTURE_USAGE */