blob: 61aae2dcc5e2df42270d0b42ec4b3fb64e58e991 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: dswstate - Dispatcher parse tree walk management routines
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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/acdispat.h>
47#include <acpi/acnamesp.h>
48
49#define _COMPONENT ACPI_DISPATCHER
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("dswstate")
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070054acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040055acpi_ds_result_insert(void *object,
56 u32 index, struct acpi_walk_state *walk_state);
57
58acpi_status acpi_ds_obj_stack_delete_all(struct acpi_walk_state *walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Robert Moore44f6c012005-04-18 22:49:35 -040060acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040061acpi_ds_obj_stack_pop_object(union acpi_operand_object **object,
62 struct acpi_walk_state *walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Len Brown4be44fc2005-08-05 00:44:28 -040064void *acpi_ds_obj_stack_get_value(u32 index,
65 struct acpi_walk_state *walk_state);
Robert Moore44f6c012005-04-18 22:49:35 -040066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Robert Moore44f6c012005-04-18 22:49:35 -040068#ifdef ACPI_FUTURE_USAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/*******************************************************************************
71 *
72 * FUNCTION: acpi_ds_result_remove
73 *
74 * PARAMETERS: Object - Where to return the popped object
75 * Index - Where to extract the object
76 * walk_state - Current Walk state
77 *
78 * RETURN: Status
79 *
80 * DESCRIPTION: Pop an object off the bottom of this walk's result stack. In
81 * other words, this is a FIFO.
82 *
83 ******************************************************************************/
84
85acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040086acpi_ds_result_remove(union acpi_operand_object **object,
87 u32 index, struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Len Brown4be44fc2005-08-05 00:44:28 -040089 union acpi_generic_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Len Brown4be44fc2005-08-05 00:44:28 -040091 ACPI_FUNCTION_NAME("ds_result_remove");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 state = walk_state->results;
94 if (!state) {
Bob Moore4a90c7e2006-01-13 16:22:00 -050095 ACPI_REPORT_ERROR(("No result object pushed! State=%p\n",
96 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return (AE_NOT_EXIST);
98 }
99
100 if (index >= ACPI_OBJ_MAX_OPERAND) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500101 ACPI_REPORT_ERROR(("Index out of range: %X State=%p Num=%X\n",
102 index, walk_state,
103 state->results.num_results));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
106 /* Check for a valid result object */
107
Len Brown4be44fc2005-08-05 00:44:28 -0400108 if (!state->results.obj_desc[index]) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500109 ACPI_REPORT_ERROR(("Null operand! State=%p #Ops=%X, Index=%X\n",
110 walk_state, state->results.num_results,
111 index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return (AE_AML_NO_RETURN_VALUE);
113 }
114
115 /* Remove the object */
116
117 state->results.num_results--;
118
Len Brown4be44fc2005-08-05 00:44:28 -0400119 *object = state->results.obj_desc[index];
120 state->results.obj_desc[index] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Len Brown4be44fc2005-08-05 00:44:28 -0400122 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
123 "Obj=%p [%s] Index=%X State=%p Num=%X\n",
124 *object,
125 (*object) ? acpi_ut_get_object_type_name(*object) :
126 "NULL", index, walk_state,
127 state->results.num_results));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 return (AE_OK);
130}
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*******************************************************************************
135 *
136 * FUNCTION: acpi_ds_result_pop
137 *
138 * PARAMETERS: Object - Where to return the popped object
139 * walk_state - Current Walk state
140 *
141 * RETURN: Status
142 *
143 * DESCRIPTION: Pop an object off the bottom of this walk's result stack. In
144 * other words, this is a FIFO.
145 *
146 ******************************************************************************/
147
148acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400149acpi_ds_result_pop(union acpi_operand_object ** object,
150 struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Len Brown4be44fc2005-08-05 00:44:28 -0400152 acpi_native_uint index;
153 union acpi_generic_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 ACPI_FUNCTION_NAME("ds_result_pop");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 state = walk_state->results;
158 if (!state) {
159 return (AE_OK);
160 }
161
162 if (!state->results.num_results) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500163 ACPI_REPORT_ERROR(("Result stack is empty! State=%p\n",
164 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return (AE_AML_NO_RETURN_VALUE);
166 }
167
168 /* Remove top element */
169
170 state->results.num_results--;
171
172 for (index = ACPI_OBJ_NUM_OPERANDS; index; index--) {
173 /* Check for a valid result object */
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 if (state->results.obj_desc[index - 1]) {
176 *object = state->results.obj_desc[index - 1];
177 state->results.obj_desc[index - 1] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Len Brown4be44fc2005-08-05 00:44:28 -0400179 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
180 "Obj=%p [%s] Index=%X State=%p Num=%X\n",
181 *object,
182 (*object) ?
183 acpi_ut_get_object_type_name(*object)
184 : "NULL", (u32) index - 1, walk_state,
185 state->results.num_results));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 return (AE_OK);
188 }
189 }
190
Bob Moore4a90c7e2006-01-13 16:22:00 -0500191 ACPI_REPORT_ERROR(("No result objects! State=%p\n", walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return (AE_AML_NO_RETURN_VALUE);
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*******************************************************************************
196 *
197 * FUNCTION: acpi_ds_result_pop_from_bottom
198 *
199 * PARAMETERS: Object - Where to return the popped object
200 * walk_state - Current Walk state
201 *
202 * RETURN: Status
203 *
204 * DESCRIPTION: Pop an object off the bottom of this walk's result stack. In
205 * other words, this is a FIFO.
206 *
207 ******************************************************************************/
208
209acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400210acpi_ds_result_pop_from_bottom(union acpi_operand_object ** object,
211 struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Len Brown4be44fc2005-08-05 00:44:28 -0400213 acpi_native_uint index;
214 union acpi_generic_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Len Brown4be44fc2005-08-05 00:44:28 -0400216 ACPI_FUNCTION_NAME("ds_result_pop_from_bottom");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 state = walk_state->results;
219 if (!state) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500220 ACPI_REPORT_ERROR(("No result object pushed! State=%p\n",
221 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return (AE_NOT_EXIST);
223 }
224
225 if (!state->results.num_results) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500226 ACPI_REPORT_ERROR(("No result objects! State=%p\n",
227 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return (AE_AML_NO_RETURN_VALUE);
229 }
230
231 /* Remove Bottom element */
232
Len Brown4be44fc2005-08-05 00:44:28 -0400233 *object = state->results.obj_desc[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 /* Push entire stack down one element */
236
237 for (index = 0; index < state->results.num_results; index++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400238 state->results.obj_desc[index] =
239 state->results.obj_desc[index + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241
242 state->results.num_results--;
243
244 /* Check for a valid result object */
245
246 if (!*object) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500247 ACPI_REPORT_ERROR(("Null operand! State=%p #Ops=%X Index=%X\n",
248 walk_state, state->results.num_results,
249 (u32) index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return (AE_AML_NO_RETURN_VALUE);
251 }
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] Results=%p State=%p\n",
254 *object,
255 (*object) ? acpi_ut_get_object_type_name(*object) :
256 "NULL", state, walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 return (AE_OK);
259}
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/*******************************************************************************
262 *
263 * FUNCTION: acpi_ds_result_push
264 *
265 * PARAMETERS: Object - Where to return the popped object
266 * walk_state - Current Walk state
267 *
268 * RETURN: Status
269 *
270 * DESCRIPTION: Push an object onto the current result stack
271 *
272 ******************************************************************************/
273
274acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400275acpi_ds_result_push(union acpi_operand_object * object,
276 struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Len Brown4be44fc2005-08-05 00:44:28 -0400278 union acpi_generic_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Len Brown4be44fc2005-08-05 00:44:28 -0400280 ACPI_FUNCTION_NAME("ds_result_push");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 state = walk_state->results;
283 if (!state) {
Len Brown4be44fc2005-08-05 00:44:28 -0400284 ACPI_REPORT_ERROR(("No result stack frame during push\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return (AE_AML_INTERNAL);
286 }
287
288 if (state->results.num_results == ACPI_OBJ_NUM_OPERANDS) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500289 ACPI_REPORT_ERROR(("Result stack overflow: Obj=%p State=%p Num=%X\n", object, walk_state, state->results.num_results));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return (AE_STACK_OVERFLOW);
291 }
292
293 if (!object) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500294 ACPI_REPORT_ERROR(("Null Object! Obj=%p State=%p Num=%X\n",
295 object, walk_state,
296 state->results.num_results));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return (AE_BAD_PARAMETER);
298 }
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300 state->results.obj_desc[state->results.num_results] = object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 state->results.num_results++;
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] State=%p Num=%X Cur=%X\n",
304 object,
305 object ?
306 acpi_ut_get_object_type_name((union
307 acpi_operand_object *)
308 object) : "NULL",
309 walk_state, state->results.num_results,
310 walk_state->current_result));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 return (AE_OK);
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*******************************************************************************
316 *
317 * FUNCTION: acpi_ds_result_stack_push
318 *
319 * PARAMETERS: walk_state - Current Walk state
320 *
321 * RETURN: Status
322 *
323 * DESCRIPTION: Push an object onto the walk_state result stack.
324 *
325 ******************************************************************************/
326
Len Brown4be44fc2005-08-05 00:44:28 -0400327acpi_status acpi_ds_result_stack_push(struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Len Brown4be44fc2005-08-05 00:44:28 -0400329 union acpi_generic_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Len Brown4be44fc2005-08-05 00:44:28 -0400331 ACPI_FUNCTION_NAME("ds_result_stack_push");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Len Brown4be44fc2005-08-05 00:44:28 -0400333 state = acpi_ut_create_generic_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (!state) {
335 return (AE_NO_MEMORY);
336 }
337
338 state->common.data_type = ACPI_DESC_TYPE_STATE_RESULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400339 acpi_ut_push_generic_state(&walk_state->results, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Len Brown4be44fc2005-08-05 00:44:28 -0400341 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Results=%p State=%p\n",
342 state, walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 return (AE_OK);
345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/*******************************************************************************
348 *
349 * FUNCTION: acpi_ds_result_stack_pop
350 *
351 * PARAMETERS: walk_state - Current Walk state
352 *
353 * RETURN: Status
354 *
355 * DESCRIPTION: Pop an object off of the walk_state result stack.
356 *
357 ******************************************************************************/
358
Len Brown4be44fc2005-08-05 00:44:28 -0400359acpi_status acpi_ds_result_stack_pop(struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Len Brown4be44fc2005-08-05 00:44:28 -0400361 union acpi_generic_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Len Brown4be44fc2005-08-05 00:44:28 -0400363 ACPI_FUNCTION_NAME("ds_result_stack_pop");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* Check for stack underflow */
366
367 if (walk_state->results == NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400368 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Underflow - State=%p\n",
369 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return (AE_AML_NO_OPERAND);
371 }
372
Len Brown4be44fc2005-08-05 00:44:28 -0400373 state = acpi_ut_pop_generic_state(&walk_state->results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Len Brown4be44fc2005-08-05 00:44:28 -0400375 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
376 "Result=%p remaining_results=%X State=%p\n",
377 state, state->results.num_results, walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Len Brown4be44fc2005-08-05 00:44:28 -0400379 acpi_ut_delete_generic_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 return (AE_OK);
382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*******************************************************************************
385 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * FUNCTION: acpi_ds_obj_stack_push
387 *
388 * PARAMETERS: Object - Object to push
389 * walk_state - Current Walk state
390 *
391 * RETURN: Status
392 *
393 * DESCRIPTION: Push an object onto this walk's object/operand stack
394 *
395 ******************************************************************************/
396
397acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400398acpi_ds_obj_stack_push(void *object, struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Len Brown4be44fc2005-08-05 00:44:28 -0400400 ACPI_FUNCTION_NAME("ds_obj_stack_push");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* Check for stack overflow */
403
404 if (walk_state->num_operands >= ACPI_OBJ_NUM_OPERANDS) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500405 ACPI_REPORT_ERROR(("Object stack overflow! Obj=%p State=%p #Ops=%X\n", object, walk_state, walk_state->num_operands));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return (AE_STACK_OVERFLOW);
407 }
408
409 /* Put the object onto the stack */
410
Len Brown4be44fc2005-08-05 00:44:28 -0400411 walk_state->operands[walk_state->num_operands] = object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 walk_state->num_operands++;
413
Len Brown4be44fc2005-08-05 00:44:28 -0400414 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] State=%p #Ops=%X\n",
415 object,
416 acpi_ut_get_object_type_name((union
417 acpi_operand_object *)
418 object), walk_state,
419 walk_state->num_operands));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 return (AE_OK);
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/*******************************************************************************
425 *
426 * FUNCTION: acpi_ds_obj_stack_pop
427 *
428 * PARAMETERS: pop_count - Number of objects/entries to pop
429 * walk_state - Current Walk state
430 *
431 * RETURN: Status
432 *
433 * DESCRIPTION: Pop this walk's object stack. Objects on the stack are NOT
434 * deleted by this routine.
435 *
436 ******************************************************************************/
437
438acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400439acpi_ds_obj_stack_pop(u32 pop_count, struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Len Brown4be44fc2005-08-05 00:44:28 -0400441 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Len Brown4be44fc2005-08-05 00:44:28 -0400443 ACPI_FUNCTION_NAME("ds_obj_stack_pop");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 for (i = 0; i < pop_count; i++) {
446 /* Check for stack underflow */
447
448 if (walk_state->num_operands == 0) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500449 ACPI_REPORT_ERROR(("Object stack underflow! Count=%X State=%p #Ops=%X\n", pop_count, walk_state, walk_state->num_operands));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return (AE_STACK_UNDERFLOW);
451 }
452
453 /* Just set the stack entry to null */
454
455 walk_state->num_operands--;
Len Brown4be44fc2005-08-05 00:44:28 -0400456 walk_state->operands[walk_state->num_operands] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
Len Brown4be44fc2005-08-05 00:44:28 -0400459 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Count=%X State=%p #Ops=%X\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 pop_count, walk_state, walk_state->num_operands));
461
462 return (AE_OK);
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/*******************************************************************************
466 *
467 * FUNCTION: acpi_ds_obj_stack_pop_and_delete
468 *
469 * PARAMETERS: pop_count - Number of objects/entries to pop
470 * walk_state - Current Walk state
471 *
472 * RETURN: Status
473 *
474 * DESCRIPTION: Pop this walk's object stack and delete each object that is
475 * popped off.
476 *
477 ******************************************************************************/
478
479acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400480acpi_ds_obj_stack_pop_and_delete(u32 pop_count,
481 struct acpi_walk_state * walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Len Brown4be44fc2005-08-05 00:44:28 -0400483 u32 i;
484 union acpi_operand_object *obj_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Len Brown4be44fc2005-08-05 00:44:28 -0400486 ACPI_FUNCTION_NAME("ds_obj_stack_pop_and_delete");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 for (i = 0; i < pop_count; i++) {
489 /* Check for stack underflow */
490
491 if (walk_state->num_operands == 0) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500492 ACPI_REPORT_ERROR(("Object stack underflow! Count=%X State=%p #Ops=%X\n", pop_count, walk_state, walk_state->num_operands));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return (AE_STACK_UNDERFLOW);
494 }
495
496 /* Pop the stack and delete an object if present in this stack entry */
497
498 walk_state->num_operands--;
Len Brown4be44fc2005-08-05 00:44:28 -0400499 obj_desc = walk_state->operands[walk_state->num_operands];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400501 acpi_ut_remove_reference(walk_state->
502 operands[walk_state->
503 num_operands]);
504 walk_state->operands[walk_state->num_operands] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506 }
507
Len Brown4be44fc2005-08-05 00:44:28 -0400508 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Count=%X State=%p #Ops=%X\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 pop_count, walk_state, walk_state->num_operands));
510
511 return (AE_OK);
512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/*******************************************************************************
515 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 * FUNCTION: acpi_ds_get_current_walk_state
517 *
518 * PARAMETERS: Thread - Get current active state for this Thread
519 *
520 * RETURN: Pointer to the current walk state
521 *
522 * DESCRIPTION: Get the walk state that is at the head of the list (the "current"
523 * walk state.)
524 *
525 ******************************************************************************/
526
Len Brown4be44fc2005-08-05 00:44:28 -0400527struct acpi_walk_state *acpi_ds_get_current_walk_state(struct acpi_thread_state
528 *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Len Brown4be44fc2005-08-05 00:44:28 -0400530 ACPI_FUNCTION_NAME("ds_get_current_walk_state");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 if (!thread) {
533 return (NULL);
534 }
535
Len Brown4be44fc2005-08-05 00:44:28 -0400536 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Current walk_state %p\n",
537 thread->walk_state_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 return (thread->walk_state_list);
540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/*******************************************************************************
543 *
544 * FUNCTION: acpi_ds_push_walk_state
545 *
546 * PARAMETERS: walk_state - State to push
Robert Moore44f6c012005-04-18 22:49:35 -0400547 * Thread - Thread state object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 *
549 * RETURN: None
550 *
Robert Moore44f6c012005-04-18 22:49:35 -0400551 * DESCRIPTION: Place the Thread state at the head of the state list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *
553 ******************************************************************************/
554
555void
Len Brown4be44fc2005-08-05 00:44:28 -0400556acpi_ds_push_walk_state(struct acpi_walk_state *walk_state,
557 struct acpi_thread_state *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Len Brown4be44fc2005-08-05 00:44:28 -0400559 ACPI_FUNCTION_TRACE("ds_push_walk_state");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Len Brown4be44fc2005-08-05 00:44:28 -0400561 walk_state->next = thread->walk_state_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 thread->walk_state_list = walk_state;
563
564 return_VOID;
565}
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567/*******************************************************************************
568 *
569 * FUNCTION: acpi_ds_pop_walk_state
570 *
Robert Moore44f6c012005-04-18 22:49:35 -0400571 * PARAMETERS: Thread - Current thread state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 *
Robert Moore44f6c012005-04-18 22:49:35 -0400573 * RETURN: A walk_state object popped from the thread's stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
575 * DESCRIPTION: Remove and return the walkstate object that is at the head of
576 * the walk stack for the given walk list. NULL indicates that
577 * the list is empty.
578 *
579 ******************************************************************************/
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581struct acpi_walk_state *acpi_ds_pop_walk_state(struct acpi_thread_state *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Len Brown4be44fc2005-08-05 00:44:28 -0400583 struct acpi_walk_state *walk_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Len Brown4be44fc2005-08-05 00:44:28 -0400585 ACPI_FUNCTION_TRACE("ds_pop_walk_state");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 walk_state = thread->walk_state_list;
588
589 if (walk_state) {
590 /* Next walk state becomes the current walk state */
591
592 thread->walk_state_list = walk_state->next;
593
594 /*
595 * Don't clear the NEXT field, this serves as an indicator
596 * that there is a parent WALK STATE
Robert Moore44f6c012005-04-18 22:49:35 -0400597 * Do Not: walk_state->Next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
599 }
600
Len Brown4be44fc2005-08-05 00:44:28 -0400601 return_PTR(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/*******************************************************************************
605 *
606 * FUNCTION: acpi_ds_create_walk_state
607 *
Robert Moore44f6c012005-04-18 22:49:35 -0400608 * PARAMETERS: owner_id - ID for object creation
609 * Origin - Starting point for this walk
610 * mth_desc - Method object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 * Thread - Current thread state
612 *
613 * RETURN: Pointer to the new walk state.
614 *
615 * DESCRIPTION: Allocate and initialize a new walk state. The current walk
616 * state is set to this new state.
617 *
618 ******************************************************************************/
619
Len Brown4be44fc2005-08-05 00:44:28 -0400620struct acpi_walk_state *acpi_ds_create_walk_state(acpi_owner_id owner_id,
621 union acpi_parse_object
622 *origin,
623 union acpi_operand_object
624 *mth_desc,
625 struct acpi_thread_state
626 *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Len Brown4be44fc2005-08-05 00:44:28 -0400628 struct acpi_walk_state *walk_state;
629 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Len Brown4be44fc2005-08-05 00:44:28 -0400631 ACPI_FUNCTION_TRACE("ds_create_walk_state");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Len Brown4be44fc2005-08-05 00:44:28 -0400633 walk_state = ACPI_MEM_CALLOCATE(sizeof(struct acpi_walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (!walk_state) {
Len Brown4be44fc2005-08-05 00:44:28 -0400635 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637
Len Brown4be44fc2005-08-05 00:44:28 -0400638 walk_state->data_type = ACPI_DESC_TYPE_WALK;
639 walk_state->owner_id = owner_id;
640 walk_state->origin = origin;
641 walk_state->method_desc = mth_desc;
642 walk_state->thread = thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 walk_state->parser_state.start_op = origin;
645
646 /* Init the method args/local */
647
648#if (!defined (ACPI_NO_METHOD_EXECUTION) && !defined (ACPI_CONSTANT_EVAL_ONLY))
Len Brown4be44fc2005-08-05 00:44:28 -0400649 acpi_ds_method_data_init(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650#endif
651
652 /* Create an initial result stack entry */
653
Len Brown4be44fc2005-08-05 00:44:28 -0400654 status = acpi_ds_result_stack_push(walk_state);
655 if (ACPI_FAILURE(status)) {
656 ACPI_MEM_FREE(walk_state);
657 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659
660 /* Put the new state at the head of the walk list */
661
662 if (thread) {
Len Brown4be44fc2005-08-05 00:44:28 -0400663 acpi_ds_push_walk_state(walk_state, thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Len Brown4be44fc2005-08-05 00:44:28 -0400666 return_PTR(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/*******************************************************************************
670 *
671 * FUNCTION: acpi_ds_init_aml_walk
672 *
673 * PARAMETERS: walk_state - New state to be initialized
674 * Op - Current parse op
675 * method_node - Control method NS node, if any
676 * aml_start - Start of AML
677 * aml_length - Length of AML
Robert Moore44f6c012005-04-18 22:49:35 -0400678 * Info - Method info block (params, etc.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 * pass_number - 1, 2, or 3
680 *
681 * RETURN: Status
682 *
683 * DESCRIPTION: Initialize a walk state for a pass 1 or 2 parse tree walk
684 *
685 ******************************************************************************/
686
687acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400688acpi_ds_init_aml_walk(struct acpi_walk_state *walk_state,
689 union acpi_parse_object *op,
690 struct acpi_namespace_node *method_node,
691 u8 * aml_start,
692 u32 aml_length,
693 struct acpi_parameter_info *info, u8 pass_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Len Brown4be44fc2005-08-05 00:44:28 -0400695 acpi_status status;
696 struct acpi_parse_state *parser_state = &walk_state->parser_state;
697 union acpi_parse_object *extra_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Len Brown4be44fc2005-08-05 00:44:28 -0400699 ACPI_FUNCTION_TRACE("ds_init_aml_walk");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Len Brown4be44fc2005-08-05 00:44:28 -0400701 walk_state->parser_state.aml =
702 walk_state->parser_state.aml_start = aml_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 walk_state->parser_state.aml_end =
Len Brown4be44fc2005-08-05 00:44:28 -0400704 walk_state->parser_state.pkg_end = aml_start + aml_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 /* The next_op of the next_walk will be the beginning of the method */
707
Robert Moore44f6c012005-04-18 22:49:35 -0400708 walk_state->next_op = NULL;
Robert Moore0c9938c2005-07-29 15:15:00 -0700709 walk_state->pass_number = pass_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (info) {
712 if (info->parameter_type == ACPI_PARAM_GPE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400713 walk_state->gpe_event_info =
714 ACPI_CAST_PTR(struct acpi_gpe_event_info,
715 info->parameters);
716 } else {
717 walk_state->params = info->parameters;
Robert Moore44f6c012005-04-18 22:49:35 -0400718 walk_state->caller_return_desc = &info->return_object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720 }
721
Len Brown4be44fc2005-08-05 00:44:28 -0400722 status = acpi_ps_init_scope(&walk_state->parser_state, op);
723 if (ACPI_FAILURE(status)) {
724 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726
727 if (method_node) {
728 walk_state->parser_state.start_node = method_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400729 walk_state->walk_type = ACPI_WALK_METHOD;
730 walk_state->method_node = method_node;
731 walk_state->method_desc =
732 acpi_ns_get_attached_object(method_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 /* Push start scope on scope stack and make it current */
735
Len Brown4be44fc2005-08-05 00:44:28 -0400736 status =
737 acpi_ds_scope_stack_push(method_node, ACPI_TYPE_METHOD,
738 walk_state);
739 if (ACPI_FAILURE(status)) {
740 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
743 /* Init the method arguments */
744
Len Brown4be44fc2005-08-05 00:44:28 -0400745 status = acpi_ds_method_data_init_args(walk_state->params,
746 ACPI_METHOD_NUM_ARGS,
747 walk_state);
748 if (ACPI_FAILURE(status)) {
749 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Len Brown4be44fc2005-08-05 00:44:28 -0400751 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /*
753 * Setup the current scope.
754 * Find a Named Op that has a namespace node associated with it.
755 * search upwards from this Op. Current scope is the first
756 * Op with a namespace node.
757 */
758 extra_op = parser_state->start_op;
759 while (extra_op && !extra_op->common.node) {
760 extra_op = extra_op->common.parent;
761 }
762
763 if (!extra_op) {
764 parser_state->start_node = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400765 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 parser_state->start_node = extra_op->common.node;
767 }
768
769 if (parser_state->start_node) {
770 /* Push start scope on scope stack and make it current */
771
Len Brown4be44fc2005-08-05 00:44:28 -0400772 status =
773 acpi_ds_scope_stack_push(parser_state->start_node,
774 parser_state->start_node->
775 type, walk_state);
776 if (ACPI_FAILURE(status)) {
777 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779 }
780 }
781
Len Brown4be44fc2005-08-05 00:44:28 -0400782 status = acpi_ds_init_callbacks(walk_state, pass_number);
783 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786/*******************************************************************************
787 *
788 * FUNCTION: acpi_ds_delete_walk_state
789 *
790 * PARAMETERS: walk_state - State to delete
791 *
792 * RETURN: Status
793 *
794 * DESCRIPTION: Delete a walk state including all internal data structures
795 *
796 ******************************************************************************/
797
Len Brown4be44fc2005-08-05 00:44:28 -0400798void acpi_ds_delete_walk_state(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Len Brown4be44fc2005-08-05 00:44:28 -0400800 union acpi_generic_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Len Brown4be44fc2005-08-05 00:44:28 -0400802 ACPI_FUNCTION_TRACE_PTR("ds_delete_walk_state", walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (!walk_state) {
805 return;
806 }
807
808 if (walk_state->data_type != ACPI_DESC_TYPE_WALK) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500809 ACPI_REPORT_ERROR(("%p is not a valid walk state\n",
810 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return;
812 }
813
814 if (walk_state->parser_state.scope) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500815 ACPI_REPORT_ERROR(("%p walk still has a scope list\n",
816 walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818
819 /* Always must free any linked control states */
820
821 while (walk_state->control_state) {
822 state = walk_state->control_state;
823 walk_state->control_state = state->common.next;
824
Len Brown4be44fc2005-08-05 00:44:28 -0400825 acpi_ut_delete_generic_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
828 /* Always must free any linked parse states */
829
830 while (walk_state->scope_info) {
831 state = walk_state->scope_info;
832 walk_state->scope_info = state->common.next;
833
Len Brown4be44fc2005-08-05 00:44:28 -0400834 acpi_ut_delete_generic_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
837 /* Always must free any stacked result states */
838
839 while (walk_state->results) {
840 state = walk_state->results;
841 walk_state->results = state->common.next;
842
Len Brown4be44fc2005-08-05 00:44:28 -0400843 acpi_ut_delete_generic_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845
Len Brown4be44fc2005-08-05 00:44:28 -0400846 ACPI_MEM_FREE(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return_VOID;
848}
849
Robert Moore44f6c012005-04-18 22:49:35 -0400850#ifdef ACPI_OBSOLETE_FUNCTIONS
851/*******************************************************************************
852 *
853 * FUNCTION: acpi_ds_result_insert
854 *
855 * PARAMETERS: Object - Object to push
856 * Index - Where to insert the object
857 * walk_state - Current Walk state
858 *
859 * RETURN: Status
860 *
861 * DESCRIPTION: Insert an object onto this walk's result stack
862 *
863 ******************************************************************************/
864
865acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400866acpi_ds_result_insert(void *object,
867 u32 index, struct acpi_walk_state *walk_state)
Robert Moore44f6c012005-04-18 22:49:35 -0400868{
Len Brown4be44fc2005-08-05 00:44:28 -0400869 union acpi_generic_state *state;
Robert Moore44f6c012005-04-18 22:49:35 -0400870
Len Brown4be44fc2005-08-05 00:44:28 -0400871 ACPI_FUNCTION_NAME("ds_result_insert");
Robert Moore44f6c012005-04-18 22:49:35 -0400872
873 state = walk_state->results;
874 if (!state) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500875 ACPI_REPORT_ERROR(("No result object pushed! State=%p\n",
876 walk_state));
Robert Moore44f6c012005-04-18 22:49:35 -0400877 return (AE_NOT_EXIST);
878 }
879
880 if (index >= ACPI_OBJ_NUM_OPERANDS) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500881 ACPI_REPORT_ERROR(("Index out of range: %X Obj=%p State=%p Num=%X\n", index, object, walk_state, state->results.num_results));
Robert Moore44f6c012005-04-18 22:49:35 -0400882 return (AE_BAD_PARAMETER);
883 }
884
885 if (!object) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500886 ACPI_REPORT_ERROR(("Null Object! Index=%X Obj=%p State=%p Num=%X\n", index, object, walk_state, state->results.num_results));
Robert Moore44f6c012005-04-18 22:49:35 -0400887 return (AE_BAD_PARAMETER);
888 }
889
Len Brown4be44fc2005-08-05 00:44:28 -0400890 state->results.obj_desc[index] = object;
Robert Moore44f6c012005-04-18 22:49:35 -0400891 state->results.num_results++;
892
Len Brown4be44fc2005-08-05 00:44:28 -0400893 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
894 "Obj=%p [%s] State=%p Num=%X Cur=%X\n",
895 object,
896 object ?
897 acpi_ut_get_object_type_name((union
898 acpi_operand_object *)
899 object) : "NULL",
900 walk_state, state->results.num_results,
901 walk_state->current_result));
Robert Moore44f6c012005-04-18 22:49:35 -0400902
903 return (AE_OK);
904}
905
Robert Moore44f6c012005-04-18 22:49:35 -0400906/*******************************************************************************
907 *
908 * FUNCTION: acpi_ds_obj_stack_delete_all
909 *
910 * PARAMETERS: walk_state - Current Walk state
911 *
912 * RETURN: Status
913 *
914 * DESCRIPTION: Clear the object stack by deleting all objects that are on it.
915 * Should be used with great care, if at all!
916 *
917 ******************************************************************************/
918
Len Brown4be44fc2005-08-05 00:44:28 -0400919acpi_status acpi_ds_obj_stack_delete_all(struct acpi_walk_state * walk_state)
Robert Moore44f6c012005-04-18 22:49:35 -0400920{
Len Brown4be44fc2005-08-05 00:44:28 -0400921 u32 i;
Robert Moore44f6c012005-04-18 22:49:35 -0400922
Len Brown4be44fc2005-08-05 00:44:28 -0400923 ACPI_FUNCTION_TRACE_PTR("ds_obj_stack_delete_all", walk_state);
Robert Moore44f6c012005-04-18 22:49:35 -0400924
925 /* The stack size is configurable, but fixed */
926
927 for (i = 0; i < ACPI_OBJ_NUM_OPERANDS; i++) {
928 if (walk_state->operands[i]) {
Len Brown4be44fc2005-08-05 00:44:28 -0400929 acpi_ut_remove_reference(walk_state->operands[i]);
Robert Moore44f6c012005-04-18 22:49:35 -0400930 walk_state->operands[i] = NULL;
931 }
932 }
933
Len Brown4be44fc2005-08-05 00:44:28 -0400934 return_ACPI_STATUS(AE_OK);
Robert Moore44f6c012005-04-18 22:49:35 -0400935}
936
Robert Moore44f6c012005-04-18 22:49:35 -0400937/*******************************************************************************
938 *
939 * FUNCTION: acpi_ds_obj_stack_pop_object
940 *
941 * PARAMETERS: Object - Where to return the popped object
942 * walk_state - Current Walk state
943 *
944 * RETURN: Status
945 *
946 * DESCRIPTION: Pop this walk's object stack. Objects on the stack are NOT
947 * deleted by this routine.
948 *
949 ******************************************************************************/
950
951acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400952acpi_ds_obj_stack_pop_object(union acpi_operand_object **object,
953 struct acpi_walk_state *walk_state)
Robert Moore44f6c012005-04-18 22:49:35 -0400954{
Len Brown4be44fc2005-08-05 00:44:28 -0400955 ACPI_FUNCTION_NAME("ds_obj_stack_pop_object");
Robert Moore44f6c012005-04-18 22:49:35 -0400956
957 /* Check for stack underflow */
958
959 if (walk_state->num_operands == 0) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500960 ACPI_REPORT_ERROR(("Missing operand/stack empty! State=%p #Ops=%X\n", walk_state, walk_state->num_operands));
Robert Moore44f6c012005-04-18 22:49:35 -0400961 *object = NULL;
962 return (AE_AML_NO_OPERAND);
963 }
964
965 /* Pop the stack */
966
967 walk_state->num_operands--;
968
969 /* Check for a valid operand */
970
Len Brown4be44fc2005-08-05 00:44:28 -0400971 if (!walk_state->operands[walk_state->num_operands]) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500972 ACPI_REPORT_ERROR(("Null operand! State=%p #Ops=%X\n",
973 walk_state, walk_state->num_operands));
Robert Moore44f6c012005-04-18 22:49:35 -0400974 *object = NULL;
975 return (AE_AML_NO_OPERAND);
976 }
977
978 /* Get operand and set stack entry to null */
979
Len Brown4be44fc2005-08-05 00:44:28 -0400980 *object = walk_state->operands[walk_state->num_operands];
981 walk_state->operands[walk_state->num_operands] = NULL;
Robert Moore44f6c012005-04-18 22:49:35 -0400982
Len Brown4be44fc2005-08-05 00:44:28 -0400983 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] State=%p #Ops=%X\n",
984 *object, acpi_ut_get_object_type_name(*object),
Robert Moore44f6c012005-04-18 22:49:35 -0400985 walk_state, walk_state->num_operands));
986
987 return (AE_OK);
988}
989
Robert Moore44f6c012005-04-18 22:49:35 -0400990/*******************************************************************************
991 *
992 * FUNCTION: acpi_ds_obj_stack_get_value
993 *
994 * PARAMETERS: Index - Stack index whose value is desired. Based
995 * on the top of the stack (index=0 == top)
996 * walk_state - Current Walk state
997 *
998 * RETURN: Pointer to the requested operand
999 *
1000 * DESCRIPTION: Retrieve an object from this walk's operand stack. Index must
1001 * be within the range of the current stack pointer.
1002 *
1003 ******************************************************************************/
1004
Len Brown4be44fc2005-08-05 00:44:28 -04001005void *acpi_ds_obj_stack_get_value(u32 index, struct acpi_walk_state *walk_state)
Robert Moore44f6c012005-04-18 22:49:35 -04001006{
1007
Len Brown4be44fc2005-08-05 00:44:28 -04001008 ACPI_FUNCTION_TRACE_PTR("ds_obj_stack_get_value", walk_state);
Robert Moore44f6c012005-04-18 22:49:35 -04001009
1010 /* Can't do it if the stack is empty */
1011
1012 if (walk_state->num_operands == 0) {
Len Brown4be44fc2005-08-05 00:44:28 -04001013 return_PTR(NULL);
Robert Moore44f6c012005-04-18 22:49:35 -04001014 }
1015
1016 /* or if the index is past the top of the stack */
1017
1018 if (index > (walk_state->num_operands - (u32) 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001019 return_PTR(NULL);
Robert Moore44f6c012005-04-18 22:49:35 -04001020 }
1021
Len Brown4be44fc2005-08-05 00:44:28 -04001022 return_PTR(walk_state->
1023 operands[(acpi_native_uint) (walk_state->num_operands - 1) -
1024 index]);
Robert Moore44f6c012005-04-18 22:49:35 -04001025}
1026#endif