| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** | 
|  | 2 | * | 
|  | 3 | * Module Name: dswstate - Dispatcher parse tree walk management routines | 
|  | 4 | * | 
|  | 5 | *****************************************************************************/ | 
|  | 6 |  | 
|  | 7 | /* | 
| Bob Moore | 4a90c7e | 2006-01-13 16:22:00 -0500 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2006, R. Byron Moore | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #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 Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 50 | ACPI_MODULE_NAME("dswstate") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 52 | /* Local prototypes */ | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 53 | #ifdef ACPI_OBSOLETE_FUNCTIONS | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | acpi_ds_result_insert(void *object, | 
|  | 56 | u32 index, struct acpi_walk_state *walk_state); | 
|  | 57 |  | 
|  | 58 | acpi_status acpi_ds_obj_stack_delete_all(struct acpi_walk_state *walk_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 60 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 61 | acpi_ds_obj_stack_pop_object(union acpi_operand_object **object, | 
|  | 62 | struct acpi_walk_state *walk_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 64 | void *acpi_ds_obj_stack_get_value(u32 index, | 
|  | 65 | struct acpi_walk_state *walk_state); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 66 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 68 | #ifdef ACPI_FUTURE_USAGE | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 |  | 
|  | 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 |  | 
|  | 85 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 86 | acpi_ds_result_remove(union acpi_operand_object **object, | 
|  | 87 | u32 index, struct acpi_walk_state *walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 89 | union acpi_generic_state *state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 91 | ACPI_FUNCTION_NAME("ds_result_remove"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 |  | 
|  | 93 | state = walk_state->results; | 
|  | 94 | if (!state) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 95 | ACPI_ERROR((AE_INFO, "No result object pushed! State=%p", | 
|  | 96 | walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | return (AE_NOT_EXIST); | 
|  | 98 | } | 
|  | 99 |  | 
|  | 100 | if (index >= ACPI_OBJ_MAX_OPERAND) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 101 | ACPI_ERROR((AE_INFO, | 
|  | 102 | "Index out of range: %X State=%p Num=%X", | 
|  | 103 | index, walk_state, state->results.num_results)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } | 
|  | 105 |  | 
|  | 106 | /* Check for a valid result object */ | 
|  | 107 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 108 | if (!state->results.obj_desc[index]) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 109 | ACPI_ERROR((AE_INFO, | 
|  | 110 | "Null operand! State=%p #Ops=%X, Index=%X", | 
|  | 111 | walk_state, state->results.num_results, index)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | return (AE_AML_NO_RETURN_VALUE); | 
|  | 113 | } | 
|  | 114 |  | 
|  | 115 | /* Remove the object */ | 
|  | 116 |  | 
|  | 117 | state->results.num_results--; | 
|  | 118 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 119 | *object = state->results.obj_desc[index]; | 
|  | 120 | state->results.obj_desc[index] = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 122 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 |  | 
|  | 129 | return (AE_OK); | 
|  | 130 | } | 
|  | 131 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 132 | #endif				/*  ACPI_FUTURE_USAGE  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | /******************************************************************************* | 
|  | 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 |  | 
|  | 148 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 149 | acpi_ds_result_pop(union acpi_operand_object ** object, | 
|  | 150 | struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | acpi_native_uint index; | 
|  | 153 | union acpi_generic_state *state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | ACPI_FUNCTION_NAME("ds_result_pop"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 |  | 
|  | 157 | state = walk_state->results; | 
|  | 158 | if (!state) { | 
|  | 159 | return (AE_OK); | 
|  | 160 | } | 
|  | 161 |  | 
|  | 162 | if (!state->results.num_results) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 163 | ACPI_ERROR((AE_INFO, "Result stack is empty! State=%p", | 
|  | 164 | walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | 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 Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | if (state->results.obj_desc[index - 1]) { | 
|  | 176 | *object = state->results.obj_desc[index - 1]; | 
|  | 177 | state->results.obj_desc[index - 1] = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 179 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 |  | 
|  | 187 | return (AE_OK); | 
|  | 188 | } | 
|  | 189 | } | 
|  | 190 |  | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 191 | ACPI_ERROR((AE_INFO, "No result objects! State=%p", walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | return (AE_AML_NO_RETURN_VALUE); | 
|  | 193 | } | 
|  | 194 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /******************************************************************************* | 
|  | 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 |  | 
|  | 209 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 210 | acpi_ds_result_pop_from_bottom(union acpi_operand_object ** object, | 
|  | 211 | struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 213 | acpi_native_uint index; | 
|  | 214 | union acpi_generic_state *state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 216 | ACPI_FUNCTION_NAME("ds_result_pop_from_bottom"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 |  | 
|  | 218 | state = walk_state->results; | 
|  | 219 | if (!state) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 220 | ACPI_ERROR((AE_INFO, | 
|  | 221 | "No result object pushed! State=%p", walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | return (AE_NOT_EXIST); | 
|  | 223 | } | 
|  | 224 |  | 
|  | 225 | if (!state->results.num_results) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 226 | ACPI_ERROR((AE_INFO, "No result objects! State=%p", | 
|  | 227 | walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | return (AE_AML_NO_RETURN_VALUE); | 
|  | 229 | } | 
|  | 230 |  | 
|  | 231 | /* Remove Bottom element */ | 
|  | 232 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 233 | *object = state->results.obj_desc[0]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 |  | 
|  | 235 | /* Push entire stack down one element */ | 
|  | 236 |  | 
|  | 237 | for (index = 0; index < state->results.num_results; index++) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 238 | state->results.obj_desc[index] = | 
|  | 239 | state->results.obj_desc[index + 1]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } | 
|  | 241 |  | 
|  | 242 | state->results.num_results--; | 
|  | 243 |  | 
|  | 244 | /* Check for a valid result object */ | 
|  | 245 |  | 
|  | 246 | if (!*object) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 247 | ACPI_ERROR((AE_INFO, | 
|  | 248 | "Null operand! State=%p #Ops=%X Index=%X", | 
|  | 249 | walk_state, state->results.num_results, | 
|  | 250 | (u32) index)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | return (AE_AML_NO_RETURN_VALUE); | 
|  | 252 | } | 
|  | 253 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] Results=%p State=%p\n", | 
|  | 255 | *object, | 
|  | 256 | (*object) ? acpi_ut_get_object_type_name(*object) : | 
|  | 257 | "NULL", state, walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
|  | 259 | return (AE_OK); | 
|  | 260 | } | 
|  | 261 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | /******************************************************************************* | 
|  | 263 | * | 
|  | 264 | * FUNCTION:    acpi_ds_result_push | 
|  | 265 | * | 
|  | 266 | * PARAMETERS:  Object              - Where to return the popped object | 
|  | 267 | *              walk_state          - Current Walk state | 
|  | 268 | * | 
|  | 269 | * RETURN:      Status | 
|  | 270 | * | 
|  | 271 | * DESCRIPTION: Push an object onto the current result stack | 
|  | 272 | * | 
|  | 273 | ******************************************************************************/ | 
|  | 274 |  | 
|  | 275 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 276 | acpi_ds_result_push(union acpi_operand_object * object, | 
|  | 277 | struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 279 | union acpi_generic_state *state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 281 | ACPI_FUNCTION_NAME("ds_result_push"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 |  | 
|  | 283 | state = walk_state->results; | 
|  | 284 | if (!state) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 285 | ACPI_ERROR((AE_INFO, "No result stack frame during push")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | return (AE_AML_INTERNAL); | 
|  | 287 | } | 
|  | 288 |  | 
|  | 289 | if (state->results.num_results == ACPI_OBJ_NUM_OPERANDS) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 290 | ACPI_ERROR((AE_INFO, | 
|  | 291 | "Result stack overflow: Obj=%p State=%p Num=%X", | 
|  | 292 | object, walk_state, state->results.num_results)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | return (AE_STACK_OVERFLOW); | 
|  | 294 | } | 
|  | 295 |  | 
|  | 296 | if (!object) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 297 | ACPI_ERROR((AE_INFO, | 
|  | 298 | "Null Object! Obj=%p State=%p Num=%X", | 
|  | 299 | object, walk_state, state->results.num_results)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | return (AE_BAD_PARAMETER); | 
|  | 301 | } | 
|  | 302 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 303 | state->results.obj_desc[state->results.num_results] = object; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | state->results.num_results++; | 
|  | 305 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 306 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] State=%p Num=%X Cur=%X\n", | 
|  | 307 | object, | 
|  | 308 | object ? | 
|  | 309 | acpi_ut_get_object_type_name((union | 
|  | 310 | acpi_operand_object *) | 
|  | 311 | object) : "NULL", | 
|  | 312 | walk_state, state->results.num_results, | 
|  | 313 | walk_state->current_result)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 |  | 
|  | 315 | return (AE_OK); | 
|  | 316 | } | 
|  | 317 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | /******************************************************************************* | 
|  | 319 | * | 
|  | 320 | * FUNCTION:    acpi_ds_result_stack_push | 
|  | 321 | * | 
|  | 322 | * PARAMETERS:  walk_state          - Current Walk state | 
|  | 323 | * | 
|  | 324 | * RETURN:      Status | 
|  | 325 | * | 
|  | 326 | * DESCRIPTION: Push an object onto the walk_state result stack. | 
|  | 327 | * | 
|  | 328 | ******************************************************************************/ | 
|  | 329 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 330 | acpi_status acpi_ds_result_stack_push(struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 332 | union acpi_generic_state *state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 334 | ACPI_FUNCTION_NAME("ds_result_stack_push"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 336 | state = acpi_ut_create_generic_state(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | if (!state) { | 
|  | 338 | return (AE_NO_MEMORY); | 
|  | 339 | } | 
|  | 340 |  | 
|  | 341 | state->common.data_type = ACPI_DESC_TYPE_STATE_RESULT; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 342 | acpi_ut_push_generic_state(&walk_state->results, state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 344 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Results=%p State=%p\n", | 
|  | 345 | state, walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 |  | 
|  | 347 | return (AE_OK); | 
|  | 348 | } | 
|  | 349 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | /******************************************************************************* | 
|  | 351 | * | 
|  | 352 | * FUNCTION:    acpi_ds_result_stack_pop | 
|  | 353 | * | 
|  | 354 | * PARAMETERS:  walk_state          - Current Walk state | 
|  | 355 | * | 
|  | 356 | * RETURN:      Status | 
|  | 357 | * | 
|  | 358 | * DESCRIPTION: Pop an object off of the walk_state result stack. | 
|  | 359 | * | 
|  | 360 | ******************************************************************************/ | 
|  | 361 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 362 | acpi_status acpi_ds_result_stack_pop(struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 364 | union acpi_generic_state *state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 366 | ACPI_FUNCTION_NAME("ds_result_stack_pop"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 |  | 
|  | 368 | /* Check for stack underflow */ | 
|  | 369 |  | 
|  | 370 | if (walk_state->results == NULL) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 371 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Underflow - State=%p\n", | 
|  | 372 | walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | return (AE_AML_NO_OPERAND); | 
|  | 374 | } | 
|  | 375 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 376 | state = acpi_ut_pop_generic_state(&walk_state->results); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 378 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, | 
|  | 379 | "Result=%p remaining_results=%X State=%p\n", | 
|  | 380 | state, state->results.num_results, walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 382 | acpi_ut_delete_generic_state(state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 |  | 
|  | 384 | return (AE_OK); | 
|  | 385 | } | 
|  | 386 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | /******************************************************************************* | 
|  | 388 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | * FUNCTION:    acpi_ds_obj_stack_push | 
|  | 390 | * | 
|  | 391 | * PARAMETERS:  Object              - Object to push | 
|  | 392 | *              walk_state          - Current Walk state | 
|  | 393 | * | 
|  | 394 | * RETURN:      Status | 
|  | 395 | * | 
|  | 396 | * DESCRIPTION: Push an object onto this walk's object/operand stack | 
|  | 397 | * | 
|  | 398 | ******************************************************************************/ | 
|  | 399 |  | 
|  | 400 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 401 | acpi_ds_obj_stack_push(void *object, struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 403 | ACPI_FUNCTION_NAME("ds_obj_stack_push"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 |  | 
|  | 405 | /* Check for stack overflow */ | 
|  | 406 |  | 
|  | 407 | if (walk_state->num_operands >= ACPI_OBJ_NUM_OPERANDS) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 408 | ACPI_ERROR((AE_INFO, | 
|  | 409 | "Object stack overflow! Obj=%p State=%p #Ops=%X", | 
|  | 410 | object, walk_state, walk_state->num_operands)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | return (AE_STACK_OVERFLOW); | 
|  | 412 | } | 
|  | 413 |  | 
|  | 414 | /* Put the object onto the stack */ | 
|  | 415 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 416 | walk_state->operands[walk_state->num_operands] = object; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | walk_state->num_operands++; | 
|  | 418 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 419 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] State=%p #Ops=%X\n", | 
|  | 420 | object, | 
|  | 421 | acpi_ut_get_object_type_name((union | 
|  | 422 | acpi_operand_object *) | 
|  | 423 | object), walk_state, | 
|  | 424 | walk_state->num_operands)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 |  | 
|  | 426 | return (AE_OK); | 
|  | 427 | } | 
|  | 428 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | /******************************************************************************* | 
|  | 430 | * | 
|  | 431 | * FUNCTION:    acpi_ds_obj_stack_pop | 
|  | 432 | * | 
|  | 433 | * PARAMETERS:  pop_count           - Number of objects/entries to pop | 
|  | 434 | *              walk_state          - Current Walk state | 
|  | 435 | * | 
|  | 436 | * RETURN:      Status | 
|  | 437 | * | 
|  | 438 | * DESCRIPTION: Pop this walk's object stack.  Objects on the stack are NOT | 
|  | 439 | *              deleted by this routine. | 
|  | 440 | * | 
|  | 441 | ******************************************************************************/ | 
|  | 442 |  | 
|  | 443 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 444 | acpi_ds_obj_stack_pop(u32 pop_count, struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 446 | u32 i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 448 | ACPI_FUNCTION_NAME("ds_obj_stack_pop"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 |  | 
|  | 450 | for (i = 0; i < pop_count; i++) { | 
|  | 451 | /* Check for stack underflow */ | 
|  | 452 |  | 
|  | 453 | if (walk_state->num_operands == 0) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 454 | ACPI_ERROR((AE_INFO, | 
|  | 455 | "Object stack underflow! Count=%X State=%p #Ops=%X", | 
|  | 456 | pop_count, walk_state, | 
|  | 457 | walk_state->num_operands)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | return (AE_STACK_UNDERFLOW); | 
|  | 459 | } | 
|  | 460 |  | 
|  | 461 | /* Just set the stack entry to null */ | 
|  | 462 |  | 
|  | 463 | walk_state->num_operands--; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 464 | walk_state->operands[walk_state->num_operands] = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } | 
|  | 466 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 467 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Count=%X State=%p #Ops=%X\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | pop_count, walk_state, walk_state->num_operands)); | 
|  | 469 |  | 
|  | 470 | return (AE_OK); | 
|  | 471 | } | 
|  | 472 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | /******************************************************************************* | 
|  | 474 | * | 
|  | 475 | * FUNCTION:    acpi_ds_obj_stack_pop_and_delete | 
|  | 476 | * | 
|  | 477 | * PARAMETERS:  pop_count           - Number of objects/entries to pop | 
|  | 478 | *              walk_state          - Current Walk state | 
|  | 479 | * | 
|  | 480 | * RETURN:      Status | 
|  | 481 | * | 
|  | 482 | * DESCRIPTION: Pop this walk's object stack and delete each object that is | 
|  | 483 | *              popped off. | 
|  | 484 | * | 
|  | 485 | ******************************************************************************/ | 
|  | 486 |  | 
|  | 487 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 488 | acpi_ds_obj_stack_pop_and_delete(u32 pop_count, | 
|  | 489 | struct acpi_walk_state * walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 491 | u32 i; | 
|  | 492 | union acpi_operand_object *obj_desc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 494 | ACPI_FUNCTION_NAME("ds_obj_stack_pop_and_delete"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 |  | 
|  | 496 | for (i = 0; i < pop_count; i++) { | 
|  | 497 | /* Check for stack underflow */ | 
|  | 498 |  | 
|  | 499 | if (walk_state->num_operands == 0) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 500 | ACPI_ERROR((AE_INFO, | 
|  | 501 | "Object stack underflow! Count=%X State=%p #Ops=%X", | 
|  | 502 | pop_count, walk_state, | 
|  | 503 | walk_state->num_operands)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | return (AE_STACK_UNDERFLOW); | 
|  | 505 | } | 
|  | 506 |  | 
|  | 507 | /* Pop the stack and delete an object if present in this stack entry */ | 
|  | 508 |  | 
|  | 509 | walk_state->num_operands--; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 510 | obj_desc = walk_state->operands[walk_state->num_operands]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | if (obj_desc) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 512 | acpi_ut_remove_reference(walk_state-> | 
|  | 513 | operands[walk_state-> | 
|  | 514 | num_operands]); | 
|  | 515 | walk_state->operands[walk_state->num_operands] = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } | 
|  | 517 | } | 
|  | 518 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 519 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Count=%X State=%p #Ops=%X\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | pop_count, walk_state, walk_state->num_operands)); | 
|  | 521 |  | 
|  | 522 | return (AE_OK); | 
|  | 523 | } | 
|  | 524 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | /******************************************************************************* | 
|  | 526 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | * FUNCTION:    acpi_ds_get_current_walk_state | 
|  | 528 | * | 
|  | 529 | * PARAMETERS:  Thread          - Get current active state for this Thread | 
|  | 530 | * | 
|  | 531 | * RETURN:      Pointer to the current walk state | 
|  | 532 | * | 
|  | 533 | * DESCRIPTION: Get the walk state that is at the head of the list (the "current" | 
|  | 534 | *              walk state.) | 
|  | 535 | * | 
|  | 536 | ******************************************************************************/ | 
|  | 537 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 538 | struct acpi_walk_state *acpi_ds_get_current_walk_state(struct acpi_thread_state | 
|  | 539 | *thread) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 541 | ACPI_FUNCTION_NAME("ds_get_current_walk_state"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 |  | 
|  | 543 | if (!thread) { | 
|  | 544 | return (NULL); | 
|  | 545 | } | 
|  | 546 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 547 | ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Current walk_state %p\n", | 
|  | 548 | thread->walk_state_list)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 |  | 
|  | 550 | return (thread->walk_state_list); | 
|  | 551 | } | 
|  | 552 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | /******************************************************************************* | 
|  | 554 | * | 
|  | 555 | * FUNCTION:    acpi_ds_push_walk_state | 
|  | 556 | * | 
|  | 557 | * PARAMETERS:  walk_state      - State to push | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 558 | *              Thread          - Thread state object | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | * | 
|  | 560 | * RETURN:      None | 
|  | 561 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 562 | * DESCRIPTION: Place the Thread state at the head of the state list. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | * | 
|  | 564 | ******************************************************************************/ | 
|  | 565 |  | 
|  | 566 | void | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 567 | acpi_ds_push_walk_state(struct acpi_walk_state *walk_state, | 
|  | 568 | struct acpi_thread_state *thread) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 570 | ACPI_FUNCTION_TRACE("ds_push_walk_state"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 572 | walk_state->next = thread->walk_state_list; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | thread->walk_state_list = walk_state; | 
|  | 574 |  | 
|  | 575 | return_VOID; | 
|  | 576 | } | 
|  | 577 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | /******************************************************************************* | 
|  | 579 | * | 
|  | 580 | * FUNCTION:    acpi_ds_pop_walk_state | 
|  | 581 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 582 | * PARAMETERS:  Thread      - Current thread state | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 584 | * RETURN:      A walk_state object popped from the thread's stack | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | * | 
|  | 586 | * DESCRIPTION: Remove and return the walkstate object that is at the head of | 
|  | 587 | *              the walk stack for the given walk list.  NULL indicates that | 
|  | 588 | *              the list is empty. | 
|  | 589 | * | 
|  | 590 | ******************************************************************************/ | 
|  | 591 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 592 | struct acpi_walk_state *acpi_ds_pop_walk_state(struct acpi_thread_state *thread) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 594 | struct acpi_walk_state *walk_state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 596 | ACPI_FUNCTION_TRACE("ds_pop_walk_state"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 |  | 
|  | 598 | walk_state = thread->walk_state_list; | 
|  | 599 |  | 
|  | 600 | if (walk_state) { | 
|  | 601 | /* Next walk state becomes the current walk state */ | 
|  | 602 |  | 
|  | 603 | thread->walk_state_list = walk_state->next; | 
|  | 604 |  | 
|  | 605 | /* | 
|  | 606 | * Don't clear the NEXT field, this serves as an indicator | 
|  | 607 | * that there is a parent WALK STATE | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 608 | * Do Not: walk_state->Next = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | */ | 
|  | 610 | } | 
|  | 611 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 612 | return_PTR(walk_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | } | 
|  | 614 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | /******************************************************************************* | 
|  | 616 | * | 
|  | 617 | * FUNCTION:    acpi_ds_create_walk_state | 
|  | 618 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 619 | * PARAMETERS:  owner_id        - ID for object creation | 
|  | 620 | *              Origin          - Starting point for this walk | 
|  | 621 | *              mth_desc        - Method object | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | *              Thread          - Current thread state | 
|  | 623 | * | 
|  | 624 | * RETURN:      Pointer to the new walk state. | 
|  | 625 | * | 
|  | 626 | * DESCRIPTION: Allocate and initialize a new walk state.  The current walk | 
|  | 627 | *              state is set to this new state. | 
|  | 628 | * | 
|  | 629 | ******************************************************************************/ | 
|  | 630 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 631 | struct acpi_walk_state *acpi_ds_create_walk_state(acpi_owner_id owner_id, | 
|  | 632 | union acpi_parse_object | 
|  | 633 | *origin, | 
|  | 634 | union acpi_operand_object | 
|  | 635 | *mth_desc, | 
|  | 636 | struct acpi_thread_state | 
|  | 637 | *thread) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 639 | struct acpi_walk_state *walk_state; | 
|  | 640 | acpi_status status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 642 | ACPI_FUNCTION_TRACE("ds_create_walk_state"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 644 | walk_state = ACPI_MEM_CALLOCATE(sizeof(struct acpi_walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | if (!walk_state) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 646 | return_PTR(NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } | 
|  | 648 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 649 | walk_state->data_type = ACPI_DESC_TYPE_WALK; | 
|  | 650 | walk_state->owner_id = owner_id; | 
|  | 651 | walk_state->origin = origin; | 
|  | 652 | walk_state->method_desc = mth_desc; | 
|  | 653 | walk_state->thread = thread; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 |  | 
|  | 655 | walk_state->parser_state.start_op = origin; | 
|  | 656 |  | 
|  | 657 | /* Init the method args/local */ | 
|  | 658 |  | 
|  | 659 | #if (!defined (ACPI_NO_METHOD_EXECUTION) && !defined (ACPI_CONSTANT_EVAL_ONLY)) | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 660 | acpi_ds_method_data_init(walk_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | #endif | 
|  | 662 |  | 
|  | 663 | /* Create an initial result stack entry */ | 
|  | 664 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 665 | status = acpi_ds_result_stack_push(walk_state); | 
|  | 666 | if (ACPI_FAILURE(status)) { | 
|  | 667 | ACPI_MEM_FREE(walk_state); | 
|  | 668 | return_PTR(NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | } | 
|  | 670 |  | 
|  | 671 | /* Put the new state at the head of the walk list */ | 
|  | 672 |  | 
|  | 673 | if (thread) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 674 | acpi_ds_push_walk_state(walk_state, thread); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } | 
|  | 676 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 677 | return_PTR(walk_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } | 
|  | 679 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | /******************************************************************************* | 
|  | 681 | * | 
|  | 682 | * FUNCTION:    acpi_ds_init_aml_walk | 
|  | 683 | * | 
|  | 684 | * PARAMETERS:  walk_state      - New state to be initialized | 
|  | 685 | *              Op              - Current parse op | 
|  | 686 | *              method_node     - Control method NS node, if any | 
|  | 687 | *              aml_start       - Start of AML | 
|  | 688 | *              aml_length      - Length of AML | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 689 | *              Info            - Method info block (params, etc.) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | *              pass_number     - 1, 2, or 3 | 
|  | 691 | * | 
|  | 692 | * RETURN:      Status | 
|  | 693 | * | 
|  | 694 | * DESCRIPTION: Initialize a walk state for a pass 1 or 2 parse tree walk | 
|  | 695 | * | 
|  | 696 | ******************************************************************************/ | 
|  | 697 |  | 
|  | 698 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 699 | acpi_ds_init_aml_walk(struct acpi_walk_state *walk_state, | 
|  | 700 | union acpi_parse_object *op, | 
|  | 701 | struct acpi_namespace_node *method_node, | 
|  | 702 | u8 * aml_start, | 
|  | 703 | u32 aml_length, | 
|  | 704 | struct acpi_parameter_info *info, u8 pass_number) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 706 | acpi_status status; | 
|  | 707 | struct acpi_parse_state *parser_state = &walk_state->parser_state; | 
|  | 708 | union acpi_parse_object *extra_op; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 710 | ACPI_FUNCTION_TRACE("ds_init_aml_walk"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 712 | walk_state->parser_state.aml = | 
|  | 713 | walk_state->parser_state.aml_start = aml_start; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | walk_state->parser_state.aml_end = | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 715 | walk_state->parser_state.pkg_end = aml_start + aml_length; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 |  | 
|  | 717 | /* The next_op of the next_walk will be the beginning of the method */ | 
|  | 718 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 719 | walk_state->next_op = NULL; | 
| Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 720 | walk_state->pass_number = pass_number; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 |  | 
|  | 722 | if (info) { | 
|  | 723 | if (info->parameter_type == ACPI_PARAM_GPE) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 724 | walk_state->gpe_event_info = | 
|  | 725 | ACPI_CAST_PTR(struct acpi_gpe_event_info, | 
|  | 726 | info->parameters); | 
|  | 727 | } else { | 
|  | 728 | walk_state->params = info->parameters; | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 729 | walk_state->caller_return_desc = &info->return_object; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | } | 
|  | 731 | } | 
|  | 732 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 733 | status = acpi_ps_init_scope(&walk_state->parser_state, op); | 
|  | 734 | if (ACPI_FAILURE(status)) { | 
|  | 735 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | } | 
|  | 737 |  | 
|  | 738 | if (method_node) { | 
|  | 739 | walk_state->parser_state.start_node = method_node; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 740 | walk_state->walk_type = ACPI_WALK_METHOD; | 
|  | 741 | walk_state->method_node = method_node; | 
|  | 742 | walk_state->method_desc = | 
|  | 743 | acpi_ns_get_attached_object(method_node); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 |  | 
|  | 745 | /* Push start scope on scope stack and make it current  */ | 
|  | 746 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 747 | status = | 
|  | 748 | acpi_ds_scope_stack_push(method_node, ACPI_TYPE_METHOD, | 
|  | 749 | walk_state); | 
|  | 750 | if (ACPI_FAILURE(status)) { | 
|  | 751 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | } | 
|  | 753 |  | 
|  | 754 | /* Init the method arguments */ | 
|  | 755 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 756 | status = acpi_ds_method_data_init_args(walk_state->params, | 
|  | 757 | ACPI_METHOD_NUM_ARGS, | 
|  | 758 | walk_state); | 
|  | 759 | if (ACPI_FAILURE(status)) { | 
|  | 760 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 762 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | /* | 
|  | 764 | * Setup the current scope. | 
|  | 765 | * Find a Named Op that has a namespace node associated with it. | 
|  | 766 | * search upwards from this Op.  Current scope is the first | 
|  | 767 | * Op with a namespace node. | 
|  | 768 | */ | 
|  | 769 | extra_op = parser_state->start_op; | 
|  | 770 | while (extra_op && !extra_op->common.node) { | 
|  | 771 | extra_op = extra_op->common.parent; | 
|  | 772 | } | 
|  | 773 |  | 
|  | 774 | if (!extra_op) { | 
|  | 775 | parser_state->start_node = NULL; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 776 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | parser_state->start_node = extra_op->common.node; | 
|  | 778 | } | 
|  | 779 |  | 
|  | 780 | if (parser_state->start_node) { | 
|  | 781 | /* Push start scope on scope stack and make it current  */ | 
|  | 782 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 783 | status = | 
|  | 784 | acpi_ds_scope_stack_push(parser_state->start_node, | 
|  | 785 | parser_state->start_node-> | 
|  | 786 | type, walk_state); | 
|  | 787 | if (ACPI_FAILURE(status)) { | 
|  | 788 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | } | 
|  | 790 | } | 
|  | 791 | } | 
|  | 792 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 793 | status = acpi_ds_init_callbacks(walk_state, pass_number); | 
|  | 794 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | } | 
|  | 796 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | /******************************************************************************* | 
|  | 798 | * | 
|  | 799 | * FUNCTION:    acpi_ds_delete_walk_state | 
|  | 800 | * | 
|  | 801 | * PARAMETERS:  walk_state      - State to delete | 
|  | 802 | * | 
|  | 803 | * RETURN:      Status | 
|  | 804 | * | 
|  | 805 | * DESCRIPTION: Delete a walk state including all internal data structures | 
|  | 806 | * | 
|  | 807 | ******************************************************************************/ | 
|  | 808 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 809 | void acpi_ds_delete_walk_state(struct acpi_walk_state *walk_state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 811 | union acpi_generic_state *state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 813 | ACPI_FUNCTION_TRACE_PTR("ds_delete_walk_state", walk_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 |  | 
|  | 815 | if (!walk_state) { | 
|  | 816 | return; | 
|  | 817 | } | 
|  | 818 |  | 
|  | 819 | if (walk_state->data_type != ACPI_DESC_TYPE_WALK) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 820 | ACPI_ERROR((AE_INFO, "%p is not a valid walk state", | 
|  | 821 | walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | return; | 
|  | 823 | } | 
|  | 824 |  | 
|  | 825 | if (walk_state->parser_state.scope) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 826 | ACPI_ERROR((AE_INFO, "%p walk still has a scope list", | 
|  | 827 | walk_state)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | } | 
|  | 829 |  | 
|  | 830 | /* Always must free any linked control states */ | 
|  | 831 |  | 
|  | 832 | while (walk_state->control_state) { | 
|  | 833 | state = walk_state->control_state; | 
|  | 834 | walk_state->control_state = state->common.next; | 
|  | 835 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 836 | acpi_ut_delete_generic_state(state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | } | 
|  | 838 |  | 
|  | 839 | /* Always must free any linked parse states */ | 
|  | 840 |  | 
|  | 841 | while (walk_state->scope_info) { | 
|  | 842 | state = walk_state->scope_info; | 
|  | 843 | walk_state->scope_info = state->common.next; | 
|  | 844 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 845 | acpi_ut_delete_generic_state(state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | } | 
|  | 847 |  | 
|  | 848 | /* Always must free any stacked result states */ | 
|  | 849 |  | 
|  | 850 | while (walk_state->results) { | 
|  | 851 | state = walk_state->results; | 
|  | 852 | walk_state->results = state->common.next; | 
|  | 853 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 854 | acpi_ut_delete_generic_state(state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } | 
|  | 856 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 857 | ACPI_MEM_FREE(walk_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | return_VOID; | 
|  | 859 | } | 
|  | 860 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 861 | #ifdef ACPI_OBSOLETE_FUNCTIONS | 
|  | 862 | /******************************************************************************* | 
|  | 863 | * | 
|  | 864 | * FUNCTION:    acpi_ds_result_insert | 
|  | 865 | * | 
|  | 866 | * PARAMETERS:  Object              - Object to push | 
|  | 867 | *              Index               - Where to insert the object | 
|  | 868 | *              walk_state          - Current Walk state | 
|  | 869 | * | 
|  | 870 | * RETURN:      Status | 
|  | 871 | * | 
|  | 872 | * DESCRIPTION: Insert an object onto this walk's result stack | 
|  | 873 | * | 
|  | 874 | ******************************************************************************/ | 
|  | 875 |  | 
|  | 876 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 877 | acpi_ds_result_insert(void *object, | 
|  | 878 | u32 index, struct acpi_walk_state *walk_state) | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 879 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 880 | union acpi_generic_state *state; | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 881 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 882 | ACPI_FUNCTION_NAME("ds_result_insert"); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 883 |  | 
|  | 884 | state = walk_state->results; | 
|  | 885 | if (!state) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 886 | ACPI_ERROR((AE_INFO, "No result object pushed! State=%p", | 
|  | 887 | walk_state)); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 888 | return (AE_NOT_EXIST); | 
|  | 889 | } | 
|  | 890 |  | 
|  | 891 | if (index >= ACPI_OBJ_NUM_OPERANDS) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 892 | ACPI_ERROR((AE_INFO, | 
|  | 893 | "Index out of range: %X Obj=%p State=%p Num=%X", | 
|  | 894 | index, object, walk_state, | 
|  | 895 | state->results.num_results)); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 896 | return (AE_BAD_PARAMETER); | 
|  | 897 | } | 
|  | 898 |  | 
|  | 899 | if (!object) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 900 | ACPI_ERROR((AE_INFO, | 
|  | 901 | "Null Object! Index=%X Obj=%p State=%p Num=%X", | 
|  | 902 | index, object, walk_state, | 
|  | 903 | state->results.num_results)); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 904 | return (AE_BAD_PARAMETER); | 
|  | 905 | } | 
|  | 906 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 907 | state->results.obj_desc[index] = object; | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 908 | state->results.num_results++; | 
|  | 909 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 910 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, | 
|  | 911 | "Obj=%p [%s] State=%p Num=%X Cur=%X\n", | 
|  | 912 | object, | 
|  | 913 | object ? | 
|  | 914 | acpi_ut_get_object_type_name((union | 
|  | 915 | acpi_operand_object *) | 
|  | 916 | object) : "NULL", | 
|  | 917 | walk_state, state->results.num_results, | 
|  | 918 | walk_state->current_result)); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 919 |  | 
|  | 920 | return (AE_OK); | 
|  | 921 | } | 
|  | 922 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 923 | /******************************************************************************* | 
|  | 924 | * | 
|  | 925 | * FUNCTION:    acpi_ds_obj_stack_delete_all | 
|  | 926 | * | 
|  | 927 | * PARAMETERS:  walk_state          - Current Walk state | 
|  | 928 | * | 
|  | 929 | * RETURN:      Status | 
|  | 930 | * | 
|  | 931 | * DESCRIPTION: Clear the object stack by deleting all objects that are on it. | 
|  | 932 | *              Should be used with great care, if at all! | 
|  | 933 | * | 
|  | 934 | ******************************************************************************/ | 
|  | 935 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 936 | acpi_status acpi_ds_obj_stack_delete_all(struct acpi_walk_state * walk_state) | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 937 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 938 | u32 i; | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 939 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 940 | ACPI_FUNCTION_TRACE_PTR("ds_obj_stack_delete_all", walk_state); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 941 |  | 
|  | 942 | /* The stack size is configurable, but fixed */ | 
|  | 943 |  | 
|  | 944 | for (i = 0; i < ACPI_OBJ_NUM_OPERANDS; i++) { | 
|  | 945 | if (walk_state->operands[i]) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 946 | acpi_ut_remove_reference(walk_state->operands[i]); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 947 | walk_state->operands[i] = NULL; | 
|  | 948 | } | 
|  | 949 | } | 
|  | 950 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 951 | return_ACPI_STATUS(AE_OK); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 952 | } | 
|  | 953 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 954 | /******************************************************************************* | 
|  | 955 | * | 
|  | 956 | * FUNCTION:    acpi_ds_obj_stack_pop_object | 
|  | 957 | * | 
|  | 958 | * PARAMETERS:  Object              - Where to return the popped object | 
|  | 959 | *              walk_state          - Current Walk state | 
|  | 960 | * | 
|  | 961 | * RETURN:      Status | 
|  | 962 | * | 
|  | 963 | * DESCRIPTION: Pop this walk's object stack.  Objects on the stack are NOT | 
|  | 964 | *              deleted by this routine. | 
|  | 965 | * | 
|  | 966 | ******************************************************************************/ | 
|  | 967 |  | 
|  | 968 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 969 | acpi_ds_obj_stack_pop_object(union acpi_operand_object **object, | 
|  | 970 | struct acpi_walk_state *walk_state) | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 971 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 972 | ACPI_FUNCTION_NAME("ds_obj_stack_pop_object"); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 973 |  | 
|  | 974 | /* Check for stack underflow */ | 
|  | 975 |  | 
|  | 976 | if (walk_state->num_operands == 0) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 977 | ACPI_ERROR((AE_INFO, | 
|  | 978 | "Missing operand/stack empty! State=%p #Ops=%X", | 
|  | 979 | walk_state, walk_state->num_operands)); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 980 | *object = NULL; | 
|  | 981 | return (AE_AML_NO_OPERAND); | 
|  | 982 | } | 
|  | 983 |  | 
|  | 984 | /* Pop the stack */ | 
|  | 985 |  | 
|  | 986 | walk_state->num_operands--; | 
|  | 987 |  | 
|  | 988 | /* Check for a valid operand */ | 
|  | 989 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 990 | if (!walk_state->operands[walk_state->num_operands]) { | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 991 | ACPI_ERROR((AE_INFO, | 
|  | 992 | "Null operand! State=%p #Ops=%X", | 
|  | 993 | walk_state, walk_state->num_operands)); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 994 | *object = NULL; | 
|  | 995 | return (AE_AML_NO_OPERAND); | 
|  | 996 | } | 
|  | 997 |  | 
|  | 998 | /* Get operand and set stack entry to null */ | 
|  | 999 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1000 | *object = walk_state->operands[walk_state->num_operands]; | 
|  | 1001 | walk_state->operands[walk_state->num_operands] = NULL; | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1002 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1003 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Obj=%p [%s] State=%p #Ops=%X\n", | 
|  | 1004 | *object, acpi_ut_get_object_type_name(*object), | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1005 | walk_state, walk_state->num_operands)); | 
|  | 1006 |  | 
|  | 1007 | return (AE_OK); | 
|  | 1008 | } | 
|  | 1009 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1010 | /******************************************************************************* | 
|  | 1011 | * | 
|  | 1012 | * FUNCTION:    acpi_ds_obj_stack_get_value | 
|  | 1013 | * | 
|  | 1014 | * PARAMETERS:  Index               - Stack index whose value is desired.  Based | 
|  | 1015 | *                                    on the top of the stack (index=0 == top) | 
|  | 1016 | *              walk_state          - Current Walk state | 
|  | 1017 | * | 
|  | 1018 | * RETURN:      Pointer to the requested operand | 
|  | 1019 | * | 
|  | 1020 | * DESCRIPTION: Retrieve an object from this walk's operand stack.  Index must | 
|  | 1021 | *              be within the range of the current stack pointer. | 
|  | 1022 | * | 
|  | 1023 | ******************************************************************************/ | 
|  | 1024 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1025 | void *acpi_ds_obj_stack_get_value(u32 index, struct acpi_walk_state *walk_state) | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1026 | { | 
|  | 1027 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1028 | ACPI_FUNCTION_TRACE_PTR("ds_obj_stack_get_value", walk_state); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1029 |  | 
|  | 1030 | /* Can't do it if the stack is empty */ | 
|  | 1031 |  | 
|  | 1032 | if (walk_state->num_operands == 0) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1033 | return_PTR(NULL); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1034 | } | 
|  | 1035 |  | 
|  | 1036 | /* or if the index is past the top of the stack */ | 
|  | 1037 |  | 
|  | 1038 | if (index > (walk_state->num_operands - (u32) 1)) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1039 | return_PTR(NULL); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1040 | } | 
|  | 1041 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1042 | return_PTR(walk_state-> | 
|  | 1043 | operands[(acpi_native_uint) (walk_state->num_operands - 1) - | 
|  | 1044 | index]); | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 1045 | } | 
|  | 1046 | #endif |