blob: 0288cdbda88e8422e9393cdcdf5213da838eb96f [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/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, 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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acparser.h"
47#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("pstree")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore44f6c012005-04-18 22:49:35 -040052/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040053#ifdef ACPI_OBSOLETE_FUNCTIONS
Len Brown4be44fc2005-08-05 00:44:28 -040054union acpi_parse_object *acpi_ps_get_child(union acpi_parse_object *op);
Robert Moore44f6c012005-04-18 22:49:35 -040055#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*******************************************************************************
58 *
59 * FUNCTION: acpi_ps_get_arg
60 *
Bob Mooreba494be2012-07-12 09:40:10 +080061 * PARAMETERS: op - Get an argument for this op
62 * argn - Nth argument to get
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 *
Robert Moore44f6c012005-04-18 22:49:35 -040064 * RETURN: The argument (as an Op object). NULL if argument does not exist
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
66 * DESCRIPTION: Get the specified op's argument.
67 *
68 ******************************************************************************/
69
Len Brown4be44fc2005-08-05 00:44:28 -040070union acpi_parse_object *acpi_ps_get_arg(union acpi_parse_object *op, u32 argn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Len Brown4be44fc2005-08-05 00:44:28 -040072 union acpi_parse_object *arg = NULL;
73 const struct acpi_opcode_info *op_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Len Brown4be44fc2005-08-05 00:44:28 -040075 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Bob Moore9ce81782011-11-16 13:39:07 +080077/*
78 if (Op->Common.aml_opcode == AML_INT_CONNECTION_OP)
79 {
80 return (Op->Common.Value.Arg);
81 }
82*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* Get the info structure for this opcode */
84
Len Brown4be44fc2005-08-05 00:44:28 -040085 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 if (op_info->class == AML_CLASS_UNKNOWN) {
Bob Moore52fc0b02006-10-02 00:00:00 -040087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* Invalid opcode or ASCII character */
89
90 return (NULL);
91 }
92
93 /* Check if this opcode requires argument sub-objects */
94
95 if (!(op_info->flags & AML_HAS_ARGS)) {
Bob Moore52fc0b02006-10-02 00:00:00 -040096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* Has no linked argument objects */
98
99 return (NULL);
100 }
101
102 /* Get the requested argument object */
103
104 arg = op->common.value.arg;
105 while (arg && argn) {
106 argn--;
107 arg = arg->common.next;
108 }
109
110 return (arg);
111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*******************************************************************************
114 *
115 * FUNCTION: acpi_ps_append_arg
116 *
Bob Mooreba494be2012-07-12 09:40:10 +0800117 * PARAMETERS: op - Append an argument to this Op.
118 * arg - Argument Op to append
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 *
120 * RETURN: None.
121 *
122 * DESCRIPTION: Append an argument to an op's argument list (a NULL arg is OK)
123 *
124 ******************************************************************************/
125
126void
Len Brown4be44fc2005-08-05 00:44:28 -0400127acpi_ps_append_arg(union acpi_parse_object *op, union acpi_parse_object *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Len Brown4be44fc2005-08-05 00:44:28 -0400129 union acpi_parse_object *prev_arg;
130 const struct acpi_opcode_info *op_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 if (!op) {
135 return;
136 }
137
138 /* Get the info structure for this opcode */
139
Len Brown4be44fc2005-08-05 00:44:28 -0400140 op_info = acpi_ps_get_opcode_info(op->common.aml_opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (op_info->class == AML_CLASS_UNKNOWN) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* Invalid opcode */
144
Bob Mooreb8e4d892006-01-27 16:43:00 -0500145 ACPI_ERROR((AE_INFO, "Invalid AML Opcode: 0x%2.2X",
146 op->common.aml_opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return;
148 }
149
150 /* Check if this opcode requires argument sub-objects */
151
152 if (!(op_info->flags & AML_HAS_ARGS)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* Has no linked argument objects */
155
156 return;
157 }
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* Append the argument to the linked argument list */
160
161 if (op->common.value.arg) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 /* Append to existing argument list */
164
165 prev_arg = op->common.value.arg;
166 while (prev_arg->common.next) {
167 prev_arg = prev_arg->common.next;
168 }
169 prev_arg->common.next = arg;
Len Brown4be44fc2005-08-05 00:44:28 -0400170 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /* No argument list, this will be the first argument */
172
173 op->common.value.arg = arg;
174 }
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* Set the parent in this arg and any args linked after it */
177
178 while (arg) {
179 arg->common.parent = op;
180 arg = arg->common.next;
Bob Moore4e3156b2008-04-10 19:06:37 +0400181
182 op->common.arg_list_length++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184}
185
Robert Moore44f6c012005-04-18 22:49:35 -0400186/*******************************************************************************
187 *
188 * FUNCTION: acpi_ps_get_depth_next
189 *
Bob Mooreba494be2012-07-12 09:40:10 +0800190 * PARAMETERS: origin - Root of subtree to search
191 * op - Last (previous) Op that was found
Robert Moore44f6c012005-04-18 22:49:35 -0400192 *
193 * RETURN: Next Op found in the search.
194 *
195 * DESCRIPTION: Get next op in tree (walking the tree in depth-first order)
196 * Return NULL when reaching "origin" or when walking up from root
197 *
198 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Len Brown4be44fc2005-08-05 00:44:28 -0400200union acpi_parse_object *acpi_ps_get_depth_next(union acpi_parse_object *origin,
201 union acpi_parse_object *op)
Robert Moore44f6c012005-04-18 22:49:35 -0400202{
Len Brown4be44fc2005-08-05 00:44:28 -0400203 union acpi_parse_object *next = NULL;
204 union acpi_parse_object *parent;
205 union acpi_parse_object *arg;
Robert Moore44f6c012005-04-18 22:49:35 -0400206
Len Brown4be44fc2005-08-05 00:44:28 -0400207 ACPI_FUNCTION_ENTRY();
Robert Moore44f6c012005-04-18 22:49:35 -0400208
209 if (!op) {
210 return (NULL);
211 }
212
213 /* Look for an argument or child */
214
Len Brown4be44fc2005-08-05 00:44:28 -0400215 next = acpi_ps_get_arg(op, 0);
Robert Moore44f6c012005-04-18 22:49:35 -0400216 if (next) {
217 return (next);
218 }
219
220 /* Look for a sibling */
221
222 next = op->common.next;
223 if (next) {
224 return (next);
225 }
226
227 /* Look for a sibling of parent */
228
229 parent = op->common.parent;
230
231 while (parent) {
Len Brown4be44fc2005-08-05 00:44:28 -0400232 arg = acpi_ps_get_arg(parent, 0);
Robert Moore44f6c012005-04-18 22:49:35 -0400233 while (arg && (arg != origin) && (arg != op)) {
234 arg = arg->common.next;
235 }
236
237 if (arg == origin) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400238
Robert Moore44f6c012005-04-18 22:49:35 -0400239 /* Reached parent of origin, end search */
240
241 return (NULL);
242 }
243
244 if (parent->common.next) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400245
Robert Moore44f6c012005-04-18 22:49:35 -0400246 /* Found sibling of parent */
247
248 return (parent->common.next);
249 }
250
251 op = parent;
252 parent = parent->common.parent;
253 }
254
255 return (next);
256}
257
Robert Moore44f6c012005-04-18 22:49:35 -0400258#ifdef ACPI_OBSOLETE_FUNCTIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/*******************************************************************************
260 *
261 * FUNCTION: acpi_ps_get_child
262 *
Bob Mooreba494be2012-07-12 09:40:10 +0800263 * PARAMETERS: op - Get the child of this Op
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *
265 * RETURN: Child Op, Null if none is found.
266 *
267 * DESCRIPTION: Get op's children or NULL if none
268 *
269 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400270
Len Brown4be44fc2005-08-05 00:44:28 -0400271union acpi_parse_object *acpi_ps_get_child(union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Len Brown4be44fc2005-08-05 00:44:28 -0400273 union acpi_parse_object *child = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 switch (op->common.aml_opcode) {
278 case AML_SCOPE_OP:
279 case AML_ELSE_OP:
280 case AML_DEVICE_OP:
281 case AML_THERMAL_ZONE_OP:
282 case AML_INT_METHODCALL_OP:
283
Len Brown4be44fc2005-08-05 00:44:28 -0400284 child = acpi_ps_get_arg(op, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 case AML_BUFFER_OP:
288 case AML_PACKAGE_OP:
289 case AML_METHOD_OP:
290 case AML_IF_OP:
291 case AML_WHILE_OP:
292 case AML_FIELD_OP:
293
Len Brown4be44fc2005-08-05 00:44:28 -0400294 child = acpi_ps_get_arg(op, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 break;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 case AML_POWER_RES_OP:
298 case AML_INDEX_FIELD_OP:
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300 child = acpi_ps_get_arg(op, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 case AML_PROCESSOR_OP:
304 case AML_BANK_FIELD_OP:
305
Len Brown4be44fc2005-08-05 00:44:28 -0400306 child = acpi_ps_get_arg(op, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 break;
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* All others have no children */
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 break;
314 }
315
316 return (child);
317}
Robert Moore44f6c012005-04-18 22:49:35 -0400318#endif