Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /******************************************************************************* |
| 3 | * |
| 4 | * Module Name: dsutils - Dispatcher utilities |
| 5 | * |
| 6 | ******************************************************************************/ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 9 | #include "accommon.h" |
| 10 | #include "acparser.h" |
| 11 | #include "amlcode.h" |
| 12 | #include "acdispat.h" |
| 13 | #include "acinterp.h" |
| 14 | #include "acnamesp.h" |
| 15 | #include "acdebug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | #define _COMPONENT ACPI_DISPATCHER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 18 | ACPI_MODULE_NAME("dsutils") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | /******************************************************************************* |
| 21 | * |
| 22 | * FUNCTION: acpi_ds_clear_implicit_return |
| 23 | * |
| 24 | * PARAMETERS: walk_state - Current State |
| 25 | * |
| 26 | * RETURN: None. |
| 27 | * |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 28 | * DESCRIPTION: Clear and remove a reference on an implicit return value. Used |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * to delete "stale" return values (if enabled, the return value |
| 30 | * from every operator is saved at least momentarily, in case the |
| 31 | * parent method exits.) |
| 32 | * |
| 33 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 34 | void acpi_ds_clear_implicit_return(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 36 | ACPI_FUNCTION_NAME(ds_clear_implicit_return); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * Slack must be enabled for this feature |
| 40 | */ |
| 41 | if (!acpi_gbl_enable_interpreter_slack) { |
| 42 | return; |
| 43 | } |
| 44 | |
| 45 | if (walk_state->implicit_return_obj) { |
| 46 | /* |
| 47 | * Delete any "stale" implicit return. However, in |
| 48 | * complex statements, the implicit return value can be |
| 49 | * bubbled up several levels. |
| 50 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 52 | "Removing reference on stale implicit return obj %p\n", |
| 53 | walk_state->implicit_return_obj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | acpi_ut_remove_reference(walk_state->implicit_return_obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | walk_state->implicit_return_obj = NULL; |
| 57 | } |
| 58 | } |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | /******************************************************************************* |
| 61 | * |
| 62 | * FUNCTION: acpi_ds_do_implicit_return |
| 63 | * |
| 64 | * PARAMETERS: return_desc - The return value |
| 65 | * walk_state - Current State |
| 66 | * add_reference - True if a reference should be added to the |
| 67 | * return object |
| 68 | * |
| 69 | * RETURN: TRUE if implicit return enabled, FALSE otherwise |
| 70 | * |
| 71 | * DESCRIPTION: Implements the optional "implicit return". We save the result |
| 72 | * of every ASL operator and control method invocation in case the |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 73 | * parent method exit. Before storing a new return value, we |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * delete the previous return value. |
| 75 | * |
| 76 | ******************************************************************************/ |
| 77 | |
| 78 | u8 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 79 | acpi_ds_do_implicit_return(union acpi_operand_object *return_desc, |
| 80 | struct acpi_walk_state *walk_state, u8 add_reference) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 82 | ACPI_FUNCTION_NAME(ds_do_implicit_return); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | /* |
| 85 | * Slack must be enabled for this feature, and we must |
| 86 | * have a valid return object |
| 87 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 88 | if ((!acpi_gbl_enable_interpreter_slack) || (!return_desc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | return (FALSE); |
| 90 | } |
| 91 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 93 | "Result %p will be implicitly returned; Prev=%p\n", |
| 94 | return_desc, walk_state->implicit_return_obj)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | /* |
| 97 | * Delete any "stale" implicit return value first. However, in |
| 98 | * complex statements, the implicit return value can be |
| 99 | * bubbled up several levels, so we don't clear the value if it |
| 100 | * is the same as the return_desc. |
| 101 | */ |
| 102 | if (walk_state->implicit_return_obj) { |
| 103 | if (walk_state->implicit_return_obj == return_desc) { |
| 104 | return (TRUE); |
| 105 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 106 | acpi_ds_clear_implicit_return(walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | /* Save the implicit return value, add a reference if requested */ |
| 110 | |
| 111 | walk_state->implicit_return_obj = return_desc; |
| 112 | if (add_reference) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 113 | acpi_ut_add_reference(return_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | return (TRUE); |
| 117 | } |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /******************************************************************************* |
| 120 | * |
| 121 | * FUNCTION: acpi_ds_is_result_used |
| 122 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 123 | * PARAMETERS: op - Current Op |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | * walk_state - Current State |
| 125 | * |
| 126 | * RETURN: TRUE if result is used, FALSE otherwise |
| 127 | * |
| 128 | * DESCRIPTION: Check if a result object will be used by the parent |
| 129 | * |
| 130 | ******************************************************************************/ |
| 131 | |
| 132 | u8 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 133 | acpi_ds_is_result_used(union acpi_parse_object * op, |
| 134 | struct acpi_walk_state * walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 136 | const struct acpi_opcode_info *parent_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 138 | ACPI_FUNCTION_TRACE_PTR(ds_is_result_used, op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
| 140 | /* Must have both an Op and a Result Object */ |
| 141 | |
| 142 | if (!op) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 143 | ACPI_ERROR((AE_INFO, "Null Op")); |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 144 | return_UINT8(TRUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | /* |
| 148 | * We know that this operator is not a |
| 149 | * Return() operator (would not come here.) The following code is the |
| 150 | * optional support for a so-called "implicit return". Some AML code |
| 151 | * assumes that the last value of the method is "implicitly" returned |
| 152 | * to the caller. Just save the last result as the return value. |
| 153 | * NOTE: this is optional because the ASL language does not actually |
| 154 | * support this behavior. |
| 155 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 156 | (void)acpi_ds_do_implicit_return(walk_state->result_obj, walk_state, |
| 157 | TRUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
| 159 | /* |
| 160 | * Now determine if the parent will use the result |
| 161 | * |
| 162 | * If there is no parent, or the parent is a scope_op, we are executing |
| 163 | * at the method level. An executing method typically has no parent, |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 164 | * since each method is parsed separately. A method invoked externally |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | * via execute_control_method has a scope_op as the parent. |
| 166 | */ |
| 167 | if ((!op->common.parent) || |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 168 | (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | /* No parent, the return value cannot possibly be used */ |
| 171 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 172 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 173 | "At Method level, result of [%s] not used\n", |
| 174 | acpi_ps_get_opcode_name(op->common. |
| 175 | aml_opcode))); |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 176 | return_UINT8(FALSE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | /* Get info on the parent. The root_op is AML_SCOPE */ |
| 180 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 181 | parent_info = |
| 182 | acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | if (parent_info->class == AML_CLASS_UNKNOWN) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 184 | ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op)); |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 185 | return_UINT8(FALSE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 189 | * Decide what to do with the result based on the parent. If |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | * the parent opcode will not use the result, delete the object. |
| 191 | * Otherwise leave it as is, it will be deleted when it is used |
| 192 | * as an operand later. |
| 193 | */ |
| 194 | switch (parent_info->class) { |
| 195 | case AML_CLASS_CONTROL: |
| 196 | |
| 197 | switch (op->common.parent->common.aml_opcode) { |
| 198 | case AML_RETURN_OP: |
| 199 | |
| 200 | /* Never delete the return value associated with a return opcode */ |
| 201 | |
| 202 | goto result_used; |
| 203 | |
| 204 | case AML_IF_OP: |
| 205 | case AML_WHILE_OP: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | /* |
| 207 | * If we are executing the predicate AND this is the predicate op, |
| 208 | * we will use the return value |
| 209 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 210 | if ((walk_state->control_state->common.state == |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 211 | ACPI_CONTROL_PREDICATE_EXECUTING) && |
| 212 | (walk_state->control_state->control.predicate_op == |
| 213 | op)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | goto result_used; |
| 215 | } |
| 216 | break; |
| 217 | |
| 218 | default: |
Chao Guan | 1d1ea1b7 | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | /* Ignore other control opcodes */ |
Chao Guan | 1d1ea1b7 | 2013-06-08 00:58:14 +0000 | [diff] [blame] | 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | break; |
| 223 | } |
| 224 | |
| 225 | /* The general control opcode returns no result */ |
| 226 | |
| 227 | goto result_not_used; |
| 228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | case AML_CLASS_CREATE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | /* |
| 231 | * These opcodes allow term_arg(s) as operands and therefore |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 232 | * the operands can be method calls. The result is used. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | */ |
| 234 | goto result_used; |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | case AML_CLASS_NAMED_OBJECT: |
| 237 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 238 | if ((op->common.parent->common.aml_opcode == AML_REGION_OP) || |
| 239 | (op->common.parent->common.aml_opcode == AML_DATA_REGION_OP) |
| 240 | || (op->common.parent->common.aml_opcode == AML_PACKAGE_OP) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 241 | || (op->common.parent->common.aml_opcode == AML_BUFFER_OP) |
| 242 | || (op->common.parent->common.aml_opcode == |
Bob Moore | 9ff5a21a | 2017-04-26 16:18:40 +0800 | [diff] [blame] | 243 | AML_VARIABLE_PACKAGE_OP) |
| 244 | || (op->common.parent->common.aml_opcode == |
Lin Ming | ef805d9 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 245 | AML_INT_EVAL_SUBTREE_OP) |
| 246 | || (op->common.parent->common.aml_opcode == |
| 247 | AML_BANK_FIELD_OP)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | /* |
| 249 | * These opcodes allow term_arg(s) as operands and therefore |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 250 | * the operands can be method calls. The result is used. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | */ |
| 252 | goto result_used; |
| 253 | } |
| 254 | |
| 255 | goto result_not_used; |
| 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | /* |
| 259 | * In all other cases. the parent will actually use the return |
| 260 | * object, so keep it. |
| 261 | */ |
| 262 | goto result_used; |
| 263 | } |
| 264 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 265 | result_used: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 266 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 267 | "Result of [%s] used by Parent [%s] Op=%p\n", |
| 268 | acpi_ps_get_opcode_name(op->common.aml_opcode), |
| 269 | acpi_ps_get_opcode_name(op->common.parent->common. |
| 270 | aml_opcode), op)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 272 | return_UINT8(TRUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 274 | result_not_used: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 275 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 276 | "Result of [%s] not used by Parent [%s] Op=%p\n", |
| 277 | acpi_ps_get_opcode_name(op->common.aml_opcode), |
| 278 | acpi_ps_get_opcode_name(op->common.parent->common. |
| 279 | aml_opcode), op)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Bob Moore | fd1af71 | 2013-03-08 09:22:23 +0000 | [diff] [blame] | 281 | return_UINT8(FALSE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | /******************************************************************************* |
| 285 | * |
| 286 | * FUNCTION: acpi_ds_delete_result_if_not_used |
| 287 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 288 | * PARAMETERS: op - Current parse Op |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | * result_obj - Result of the operation |
| 290 | * walk_state - Current state |
| 291 | * |
| 292 | * RETURN: Status |
| 293 | * |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 294 | * DESCRIPTION: Used after interpretation of an opcode. If there is an internal |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | * result descriptor, check if the parent opcode will actually use |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 296 | * this result. If not, delete the result now so that it will |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | * not become orphaned. |
| 298 | * |
| 299 | ******************************************************************************/ |
| 300 | |
| 301 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 302 | acpi_ds_delete_result_if_not_used(union acpi_parse_object *op, |
| 303 | union acpi_operand_object *result_obj, |
| 304 | struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 306 | union acpi_operand_object *obj_desc; |
| 307 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 309 | ACPI_FUNCTION_TRACE_PTR(ds_delete_result_if_not_used, result_obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | if (!op) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 312 | ACPI_ERROR((AE_INFO, "Null Op")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | return_VOID; |
| 314 | } |
| 315 | |
| 316 | if (!result_obj) { |
| 317 | return_VOID; |
| 318 | } |
| 319 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 320 | if (!acpi_ds_is_result_used(op, walk_state)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /* Must pop the result stack (obj_desc should be equal to result_obj) */ |
| 323 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 324 | status = acpi_ds_result_pop(&obj_desc, walk_state); |
| 325 | if (ACPI_SUCCESS(status)) { |
| 326 | acpi_ut_remove_reference(result_obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | } |
| 329 | |
| 330 | return_VOID; |
| 331 | } |
| 332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | /******************************************************************************* |
| 334 | * |
| 335 | * FUNCTION: acpi_ds_resolve_operands |
| 336 | * |
| 337 | * PARAMETERS: walk_state - Current walk state with operands on stack |
| 338 | * |
| 339 | * RETURN: Status |
| 340 | * |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 341 | * DESCRIPTION: Resolve all operands to their values. Used to prepare |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | * arguments to a control method invocation (a call from one |
| 343 | * method to another.) |
| 344 | * |
| 345 | ******************************************************************************/ |
| 346 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 347 | acpi_status acpi_ds_resolve_operands(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 349 | u32 i; |
| 350 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 352 | ACPI_FUNCTION_TRACE_PTR(ds_resolve_operands, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /* |
| 355 | * Attempt to resolve each of the valid operands |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 356 | * Method arguments are passed by reference, not by value. This means |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | * that the actual objects are passed, not copies of the objects. |
| 358 | */ |
| 359 | for (i = 0; i < walk_state->num_operands; i++) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 360 | status = |
| 361 | acpi_ex_resolve_to_value(&walk_state->operands[i], |
| 362 | walk_state); |
| 363 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | break; |
| 365 | } |
| 366 | } |
| 367 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 368 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
| 370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | /******************************************************************************* |
| 372 | * |
| 373 | * FUNCTION: acpi_ds_clear_operands |
| 374 | * |
| 375 | * PARAMETERS: walk_state - Current walk state with operands on stack |
| 376 | * |
| 377 | * RETURN: None |
| 378 | * |
| 379 | * DESCRIPTION: Clear all operands on the current walk state operand stack. |
| 380 | * |
| 381 | ******************************************************************************/ |
| 382 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 383 | void acpi_ds_clear_operands(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 385 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 387 | ACPI_FUNCTION_TRACE_PTR(ds_clear_operands, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
| 389 | /* Remove a reference on each operand on the stack */ |
| 390 | |
| 391 | for (i = 0; i < walk_state->num_operands; i++) { |
| 392 | /* |
| 393 | * Remove a reference to all operands, including both |
| 394 | * "Arguments" and "Targets". |
| 395 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 396 | acpi_ut_remove_reference(walk_state->operands[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | walk_state->operands[i] = NULL; |
| 398 | } |
| 399 | |
| 400 | walk_state->num_operands = 0; |
| 401 | return_VOID; |
| 402 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | /******************************************************************************* |
| 405 | * |
| 406 | * FUNCTION: acpi_ds_create_operand |
| 407 | * |
| 408 | * PARAMETERS: walk_state - Current walk state |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 409 | * arg - Parse object for the argument |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | * arg_index - Which argument (zero based) |
| 411 | * |
| 412 | * RETURN: Status |
| 413 | * |
| 414 | * DESCRIPTION: Translate a parse tree object that is an argument to an AML |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 415 | * opcode to the equivalent interpreter object. This may include |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | * looking up a name or entering a new name into the internal |
| 417 | * namespace. |
| 418 | * |
| 419 | ******************************************************************************/ |
| 420 | |
| 421 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 422 | acpi_ds_create_operand(struct acpi_walk_state *walk_state, |
| 423 | union acpi_parse_object *arg, u32 arg_index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 425 | acpi_status status = AE_OK; |
| 426 | char *name_string; |
| 427 | u32 name_length; |
| 428 | union acpi_operand_object *obj_desc; |
| 429 | union acpi_parse_object *parent_op; |
| 430 | u16 opcode; |
| 431 | acpi_interpreter_mode interpreter_mode; |
| 432 | const struct acpi_opcode_info *op_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 434 | ACPI_FUNCTION_TRACE_PTR(ds_create_operand, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
| 436 | /* A valid name must be looked up in the namespace */ |
| 437 | |
| 438 | if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) && |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 439 | (arg->common.value.string) && |
| 440 | !(arg->common.flags & ACPI_PARSEOP_IN_STACK)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 441 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Getting a name: Arg=%p\n", |
| 442 | arg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
| 444 | /* Get the entire name string from the AML stream */ |
| 445 | |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 446 | status = acpi_ex_get_name_string(ACPI_TYPE_ANY, |
| 447 | arg->common.value.buffer, |
| 448 | &name_string, &name_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 450 | if (ACPI_FAILURE(status)) { |
| 451 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | /* All prefixes have been handled, and the name is in name_string */ |
| 455 | |
| 456 | /* |
| 457 | * Special handling for buffer_field declarations. This is a deferred |
| 458 | * opcode that unfortunately defines the field name as the last |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 459 | * parameter instead of the first. We get here when we are performing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | * the deferred execution, so the actual name of the field is already |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 461 | * in the namespace. We don't want to attempt to look it up again |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | * because we may be executing in a different scope than where the |
| 463 | * actual opcode exists. |
| 464 | */ |
| 465 | if ((walk_state->deferred_node) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 466 | (walk_state->deferred_node->type == ACPI_TYPE_BUFFER_FIELD) |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 467 | && (arg_index == (u32) |
| 468 | ((walk_state->opcode == AML_CREATE_FIELD_OP) ? 3 : 2))) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 469 | obj_desc = |
| 470 | ACPI_CAST_PTR(union acpi_operand_object, |
| 471 | walk_state->deferred_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | status = AE_OK; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 473 | } else { /* All other opcodes */ |
| 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | /* |
| 476 | * Differentiate between a namespace "create" operation |
| 477 | * versus a "lookup" operation (IMODE_LOAD_PASS2 vs. |
| 478 | * IMODE_EXECUTE) in order to support the creation of |
| 479 | * namespace objects during the execution of control methods. |
| 480 | */ |
| 481 | parent_op = arg->common.parent; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 482 | op_info = |
| 483 | acpi_ps_get_opcode_info(parent_op->common. |
| 484 | aml_opcode); |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 485 | |
| 486 | if ((op_info->flags & AML_NSNODE) && |
| 487 | (parent_op->common.aml_opcode != |
| 488 | AML_INT_METHODCALL_OP) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 489 | && (parent_op->common.aml_opcode != AML_REGION_OP) |
| 490 | && (parent_op->common.aml_opcode != |
| 491 | AML_INT_NAMEPATH_OP)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | /* Enter name into namespace if not found */ |
| 494 | |
| 495 | interpreter_mode = ACPI_IMODE_LOAD_PASS2; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 496 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | /* Return a failure if name not found */ |
| 498 | |
| 499 | interpreter_mode = ACPI_IMODE_EXECUTE; |
| 500 | } |
| 501 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 502 | status = |
| 503 | acpi_ns_lookup(walk_state->scope_info, name_string, |
| 504 | ACPI_TYPE_ANY, interpreter_mode, |
| 505 | ACPI_NS_SEARCH_PARENT | |
| 506 | ACPI_NS_DONT_OPEN_SCOPE, walk_state, |
| 507 | ACPI_CAST_INDIRECT_PTR(struct |
| 508 | acpi_namespace_node, |
| 509 | &obj_desc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | /* |
| 511 | * The only case where we pass through (ignore) a NOT_FOUND |
| 512 | * error is for the cond_ref_of opcode. |
| 513 | */ |
| 514 | if (status == AE_NOT_FOUND) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 515 | if (parent_op->common.aml_opcode == |
Bob Moore | 9ff5a21a | 2017-04-26 16:18:40 +0800 | [diff] [blame] | 516 | AML_CONDITIONAL_REF_OF_OP) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | /* |
| 518 | * For the Conditional Reference op, it's OK if |
| 519 | * the name is not found; We just need a way to |
| 520 | * indicate this to the interpreter, set the |
| 521 | * object to the root |
| 522 | */ |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 523 | obj_desc = |
| 524 | ACPI_CAST_PTR(union |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 525 | acpi_operand_object, |
| 526 | acpi_gbl_root_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | status = AE_OK; |
Bob Moore | 56a3d5e | 2015-04-13 11:50:32 +0800 | [diff] [blame] | 528 | } else if (parent_op->common.aml_opcode == |
| 529 | AML_EXTERNAL_OP) { |
Bob Moore | 7fdb5ce | 2016-08-04 16:42:42 +0800 | [diff] [blame] | 530 | /* |
| 531 | * This opcode should never appear here. It is used only |
| 532 | * by AML disassemblers and is surrounded by an If(0) |
| 533 | * by the ASL compiler. |
| 534 | * |
| 535 | * Therefore, if we see it here, it is a serious error. |
| 536 | */ |
| 537 | status = AE_AML_BAD_OPCODE; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 538 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | /* |
| 540 | * We just plain didn't find it -- which is a |
| 541 | * very serious error at this point |
| 542 | */ |
| 543 | status = AE_AML_NAME_NOT_FOUND; |
| 544 | } |
| 545 | } |
| 546 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 547 | if (ACPI_FAILURE(status)) { |
Bob Moore | 16ccf82 | 2017-11-17 15:42:22 -0800 | [diff] [blame] | 548 | ACPI_ERROR_NAMESPACE(walk_state->scope_info, |
| 549 | name_string, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } |
| 551 | } |
| 552 | |
| 553 | /* Free the namestring created above */ |
| 554 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 555 | ACPI_FREE(name_string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
| 557 | /* Check status from the lookup */ |
| 558 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 559 | if (ACPI_FAILURE(status)) { |
| 560 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | /* Put the resulting object onto the current object stack */ |
| 564 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 565 | status = acpi_ds_obj_stack_push(obj_desc, walk_state); |
| 566 | if (ACPI_FAILURE(status)) { |
| 567 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | } |
Lv Zheng | 8a2a250 | 2015-12-03 10:42:53 +0800 | [diff] [blame] | 569 | |
| 570 | acpi_db_display_argument_object(obj_desc, walk_state); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 571 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | /* Check for null name case */ |
| 573 | |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 574 | if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) && |
| 575 | !(arg->common.flags & ACPI_PARSEOP_IN_STACK)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | /* |
| 577 | * If the name is null, this means that this is an |
| 578 | * optional result parameter that was not specified |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 579 | * in the original ASL. Create a Zero Constant for a |
| 580 | * placeholder. (Store to a constant is a Noop.) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 582 | opcode = AML_ZERO_OP; /* Has no arguments! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 584 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 585 | "Null namepath: Arg=%p\n", arg)); |
| 586 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | opcode = arg->common.aml_opcode; |
| 588 | } |
| 589 | |
| 590 | /* Get the object type of the argument */ |
| 591 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 592 | op_info = acpi_ps_get_opcode_info(opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | if (op_info->object_type == ACPI_TYPE_INVALID) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 594 | return_ACPI_STATUS(AE_NOT_IMPLEMENTED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 597 | if ((op_info->flags & AML_HAS_RETVAL) || |
| 598 | (arg->common.flags & ACPI_PARSEOP_IN_STACK)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | /* |
| 600 | * Use value that was already previously returned |
| 601 | * by the evaluation of this argument |
| 602 | */ |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 603 | status = acpi_ds_result_pop(&obj_desc, walk_state); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 604 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | /* |
| 606 | * Only error is underflow, and this indicates |
| 607 | * a missing or null operand! |
| 608 | */ |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 609 | ACPI_EXCEPTION((AE_INFO, status, |
| 610 | "Missing or null operand")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 611 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 613 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | /* Create an ACPI_INTERNAL_OBJECT for the argument */ |
| 615 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 616 | obj_desc = |
| 617 | acpi_ut_create_internal_object(op_info-> |
| 618 | object_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | if (!obj_desc) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 620 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | /* Initialize the new object */ |
| 624 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 625 | status = |
| 626 | acpi_ds_init_object_from_op(walk_state, arg, opcode, |
| 627 | &obj_desc); |
| 628 | if (ACPI_FAILURE(status)) { |
| 629 | acpi_ut_delete_object_desc(obj_desc); |
| 630 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | } |
| 632 | } |
| 633 | |
| 634 | /* Put the operand object on the object stack */ |
| 635 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 636 | status = acpi_ds_obj_stack_push(obj_desc, walk_state); |
| 637 | if (ACPI_FAILURE(status)) { |
| 638 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | |
Lv Zheng | 8a2a250 | 2015-12-03 10:42:53 +0800 | [diff] [blame] | 641 | acpi_db_display_argument_object(obj_desc, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | } |
| 643 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 644 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | /******************************************************************************* |
| 648 | * |
| 649 | * FUNCTION: acpi_ds_create_operands |
| 650 | * |
| 651 | * PARAMETERS: walk_state - Current state |
| 652 | * first_arg - First argument of a parser argument tree |
| 653 | * |
| 654 | * RETURN: Status |
| 655 | * |
| 656 | * DESCRIPTION: Convert an operator's arguments from a parse tree format to |
| 657 | * namespace objects and place those argument object on the object |
| 658 | * stack in preparation for evaluation by the interpreter. |
| 659 | * |
| 660 | ******************************************************************************/ |
| 661 | |
| 662 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 663 | acpi_ds_create_operands(struct acpi_walk_state *walk_state, |
| 664 | union acpi_parse_object *first_arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 666 | acpi_status status = AE_OK; |
| 667 | union acpi_parse_object *arg; |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 668 | union acpi_parse_object *arguments[ACPI_OBJ_NUM_OPERANDS]; |
Bob Moore | b7f9f04 | 2008-04-10 19:06:40 +0400 | [diff] [blame] | 669 | u32 arg_count = 0; |
| 670 | u32 index = walk_state->num_operands; |
| 671 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 673 | ACPI_FUNCTION_TRACE_PTR(ds_create_operands, first_arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 675 | /* Get all arguments in the list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
| 677 | arg = first_arg; |
| 678 | while (arg) { |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 679 | if (index >= ACPI_OBJ_NUM_OPERANDS) { |
| 680 | return_ACPI_STATUS(AE_BAD_DATA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } |
| 682 | |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 683 | arguments[index] = arg; |
| 684 | walk_state->operands[index] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
| 686 | /* Move on to next argument, if any */ |
| 687 | |
| 688 | arg = arg->common.next; |
| 689 | arg_count++; |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 690 | index++; |
| 691 | } |
| 692 | |
Bob Moore | 87beb7e | 2014-01-08 13:44:15 +0800 | [diff] [blame] | 693 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
| 694 | "NumOperands %d, ArgCount %d, Index %d\n", |
| 695 | walk_state->num_operands, arg_count, index)); |
| 696 | |
| 697 | /* Create the interpreter arguments, in reverse order */ |
| 698 | |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 699 | index--; |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 700 | for (i = 0; i < arg_count; i++) { |
| 701 | arg = arguments[index]; |
Bob Moore | 87beb7e | 2014-01-08 13:44:15 +0800 | [diff] [blame] | 702 | walk_state->operand_index = (u8)index; |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 703 | |
| 704 | status = acpi_ds_create_operand(walk_state, arg, index); |
| 705 | if (ACPI_FAILURE(status)) { |
| 706 | goto cleanup; |
| 707 | } |
| 708 | |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 709 | ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, |
Bob Moore | 87beb7e | 2014-01-08 13:44:15 +0800 | [diff] [blame] | 710 | "Created Arg #%u (%p) %u args total\n", |
| 711 | index, arg, arg_count)); |
| 712 | index--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } |
| 714 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 715 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 717 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | /* |
| 719 | * We must undo everything done above; meaning that we must |
| 720 | * pop everything off of the operand stack and delete those |
| 721 | * objects |
| 722 | */ |
Bob Moore | 773069d | 2008-04-10 19:06:36 +0400 | [diff] [blame] | 723 | acpi_ds_obj_stack_pop_and_delete(arg_count, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 725 | ACPI_EXCEPTION((AE_INFO, status, "While creating Arg %u", index)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 726 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | } |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 728 | |
| 729 | /***************************************************************************** |
| 730 | * |
| 731 | * FUNCTION: acpi_ds_evaluate_name_path |
| 732 | * |
| 733 | * PARAMETERS: walk_state - Current state of the parse tree walk, |
| 734 | * the opcode of current operation should be |
| 735 | * AML_INT_NAMEPATH_OP |
| 736 | * |
| 737 | * RETURN: Status |
| 738 | * |
| 739 | * DESCRIPTION: Translate the -name_path- parse tree object to the equivalent |
| 740 | * interpreter object, convert it to value, if needed, duplicate |
| 741 | * it, if needed, and push it onto the current result stack. |
| 742 | * |
| 743 | ****************************************************************************/ |
| 744 | |
| 745 | acpi_status acpi_ds_evaluate_name_path(struct acpi_walk_state *walk_state) |
| 746 | { |
| 747 | acpi_status status = AE_OK; |
| 748 | union acpi_parse_object *op = walk_state->op; |
| 749 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 750 | union acpi_operand_object *new_obj_desc; |
| 751 | u8 type; |
| 752 | |
| 753 | ACPI_FUNCTION_TRACE_PTR(ds_evaluate_name_path, walk_state); |
| 754 | |
| 755 | if (!op->common.parent) { |
| 756 | |
| 757 | /* This happens after certain exception processing */ |
| 758 | |
| 759 | goto exit; |
| 760 | } |
| 761 | |
| 762 | if ((op->common.parent->common.aml_opcode == AML_PACKAGE_OP) || |
Bob Moore | 9ff5a21a | 2017-04-26 16:18:40 +0800 | [diff] [blame] | 763 | (op->common.parent->common.aml_opcode == AML_VARIABLE_PACKAGE_OP) || |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 764 | (op->common.parent->common.aml_opcode == AML_REF_OF_OP)) { |
| 765 | |
| 766 | /* TBD: Should we specify this feature as a bit of op_info->Flags of these opcodes? */ |
| 767 | |
| 768 | goto exit; |
| 769 | } |
| 770 | |
| 771 | status = acpi_ds_create_operand(walk_state, op, 0); |
| 772 | if (ACPI_FAILURE(status)) { |
| 773 | goto exit; |
| 774 | } |
| 775 | |
| 776 | if (op->common.flags & ACPI_PARSEOP_TARGET) { |
| 777 | new_obj_desc = *operand; |
| 778 | goto push_result; |
| 779 | } |
| 780 | |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 781 | type = (*operand)->common.type; |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 782 | |
| 783 | status = acpi_ex_resolve_to_value(operand, walk_state); |
| 784 | if (ACPI_FAILURE(status)) { |
| 785 | goto exit; |
| 786 | } |
| 787 | |
| 788 | if (type == ACPI_TYPE_INTEGER) { |
| 789 | |
| 790 | /* It was incremented by acpi_ex_resolve_to_value */ |
| 791 | |
| 792 | acpi_ut_remove_reference(*operand); |
| 793 | |
| 794 | status = |
| 795 | acpi_ut_copy_iobject_to_iobject(*operand, &new_obj_desc, |
| 796 | walk_state); |
| 797 | if (ACPI_FAILURE(status)) { |
| 798 | goto exit; |
| 799 | } |
| 800 | } else { |
| 801 | /* |
| 802 | * The object either was anew created or is |
| 803 | * a Namespace node - don't decrement it. |
| 804 | */ |
| 805 | new_obj_desc = *operand; |
| 806 | } |
| 807 | |
| 808 | /* Cleanup for name-path operand */ |
| 809 | |
| 810 | status = acpi_ds_obj_stack_pop(1, walk_state); |
| 811 | if (ACPI_FAILURE(status)) { |
| 812 | walk_state->result_obj = new_obj_desc; |
| 813 | goto exit; |
| 814 | } |
| 815 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 816 | push_result: |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 817 | |
| 818 | walk_state->result_obj = new_obj_desc; |
| 819 | |
| 820 | status = acpi_ds_result_push(walk_state->result_obj, walk_state); |
| 821 | if (ACPI_SUCCESS(status)) { |
| 822 | |
| 823 | /* Force to take it from stack */ |
| 824 | |
| 825 | op->common.flags |= ACPI_PARSEOP_IN_STACK; |
| 826 | } |
| 827 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 828 | exit: |
Bob Moore | 4e3156b | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 829 | |
| 830 | return_ACPI_STATUS(status); |
| 831 | } |