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: exoparg2 - AML execution - opcodes with 2 arguments |
| 5 | * |
Bob Moore | 800ba7c | 2020-01-10 11:31:49 -0800 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2020, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 8 | *****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 11 | #include "accommon.h" |
| 12 | #include "acparser.h" |
| 13 | #include "acinterp.h" |
| 14 | #include "acevents.h" |
| 15 | #include "amlcode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #define _COMPONENT ACPI_EXECUTER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 18 | ACPI_MODULE_NAME("exoparg2") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | /*! |
| 21 | * Naming convention for AML interpreter execution routines. |
| 22 | * |
| 23 | * The routines that begin execution of AML opcodes are named with a common |
| 24 | * convention based upon the number of arguments, the number of target operands, |
| 25 | * and whether or not a value is returned: |
| 26 | * |
| 27 | * AcpiExOpcode_xA_yT_zR |
| 28 | * |
| 29 | * Where: |
| 30 | * |
| 31 | * xA - ARGUMENTS: The number of arguments (input operands) that are |
| 32 | * required for this opcode type (1 through 6 args). |
| 33 | * yT - TARGETS: The number of targets (output operands) that are required |
| 34 | * for this opcode type (0, 1, or 2 targets). |
| 35 | * zR - RETURN VALUE: Indicates whether this opcode type returns a value |
| 36 | * as the function return (0 or 1). |
| 37 | * |
| 38 | * The AcpiExOpcode* functions are called via the Dispatcher component with |
| 39 | * fully resolved operands. |
| 40 | !*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /******************************************************************************* |
| 42 | * |
| 43 | * FUNCTION: acpi_ex_opcode_2A_0T_0R |
| 44 | * |
| 45 | * PARAMETERS: walk_state - Current walk state |
| 46 | * |
| 47 | * RETURN: Status |
| 48 | * |
| 49 | * DESCRIPTION: Execute opcode with two arguments, no target, and no return |
| 50 | * value. |
| 51 | * |
| 52 | * ALLOCATION: Deletes both operands |
| 53 | * |
| 54 | ******************************************************************************/ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 57 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 58 | struct acpi_namespace_node *node; |
| 59 | u32 value; |
| 60 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 62 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_0R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 63 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | /* Examine the opcode */ |
| 66 | |
| 67 | switch (walk_state->opcode) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 68 | case AML_NOTIFY_OP: /* Notify (notify_object, notify_value) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
| 70 | /* The first operand is a namespace node */ |
| 71 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 72 | node = (struct acpi_namespace_node *)operand[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | /* Second value is the notify value */ |
| 75 | |
| 76 | value = (u32) operand[1]->integer.value; |
| 77 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 78 | /* Are notifies allowed on this object? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 80 | if (!acpi_ev_is_notify_object(node)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 81 | ACPI_ERROR((AE_INFO, |
| 82 | "Unexpected notify object type [%s]", |
| 83 | acpi_ut_get_type_name(node->type))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | status = AE_AML_OPERAND_TYPE; |
| 86 | break; |
| 87 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * Dispatch the notify to the appropriate handler |
| 91 | * NOTE: the request is queued for execution after this method |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 92 | * completes. The notify handlers are NOT invoked synchronously |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | * from this thread -- because handlers may in turn run other |
| 94 | * control methods. |
| 95 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 96 | status = acpi_ev_queue_notify_request(node, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | break; |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | default: |
| 100 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 101 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 102 | walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | status = AE_AML_BAD_OPCODE; |
| 104 | } |
| 105 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 106 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | /******************************************************************************* |
| 110 | * |
| 111 | * FUNCTION: acpi_ex_opcode_2A_2T_1R |
| 112 | * |
| 113 | * PARAMETERS: walk_state - Current walk state |
| 114 | * |
| 115 | * RETURN: Status |
| 116 | * |
| 117 | * DESCRIPTION: Execute a dyadic operator (2 operands) with 2 output targets |
| 118 | * and one implicit return value. |
| 119 | * |
| 120 | ******************************************************************************/ |
| 121 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 122 | acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 124 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 125 | union acpi_operand_object *return_desc1 = NULL; |
| 126 | union acpi_operand_object *return_desc2 = NULL; |
| 127 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 129 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 130 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 132 | /* Execute the opcode */ |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | switch (walk_state->opcode) { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 135 | case AML_DIVIDE_OP: |
| 136 | |
| 137 | /* Divide (Dividend, Divisor, remainder_result quotient_result) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 139 | return_desc1 = |
| 140 | acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | if (!return_desc1) { |
| 142 | status = AE_NO_MEMORY; |
| 143 | goto cleanup; |
| 144 | } |
| 145 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 146 | return_desc2 = |
| 147 | acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | if (!return_desc2) { |
| 149 | status = AE_NO_MEMORY; |
| 150 | goto cleanup; |
| 151 | } |
| 152 | |
| 153 | /* Quotient to return_desc1, remainder to return_desc2 */ |
| 154 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | status = acpi_ut_divide(operand[0]->integer.value, |
| 156 | operand[1]->integer.value, |
| 157 | &return_desc1->integer.value, |
| 158 | &return_desc2->integer.value); |
| 159 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | goto cleanup; |
| 161 | } |
| 162 | break; |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | default: |
| 165 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 166 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 167 | walk_state->opcode)); |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | status = AE_AML_BAD_OPCODE; |
| 170 | goto cleanup; |
| 171 | } |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | /* Store the results to the target reference operands */ |
| 174 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | status = acpi_ex_store(return_desc2, operand[2], walk_state); |
| 176 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | goto cleanup; |
| 178 | } |
| 179 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | status = acpi_ex_store(return_desc1, operand[3], walk_state); |
| 181 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | goto cleanup; |
| 183 | } |
| 184 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 185 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* |
| 187 | * Since the remainder is not returned indirectly, remove a reference to |
| 188 | * it. Only the quotient is returned indirectly. |
| 189 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 190 | acpi_ut_remove_reference(return_desc2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 192 | if (ACPI_FAILURE(status)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | /* Delete the return object */ |
| 195 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 196 | acpi_ut_remove_reference(return_desc1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Bob Moore | 4b6e16c | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 199 | /* Save return object (the remainder) on success */ |
| 200 | |
| 201 | else { |
| 202 | walk_state->result_obj = return_desc1; |
| 203 | } |
| 204 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 205 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | /******************************************************************************* |
| 209 | * |
| 210 | * FUNCTION: acpi_ex_opcode_2A_1T_1R |
| 211 | * |
| 212 | * PARAMETERS: walk_state - Current walk state |
| 213 | * |
| 214 | * RETURN: Status |
| 215 | * |
| 216 | * DESCRIPTION: Execute opcode with two arguments, one target, and a return |
| 217 | * value. |
| 218 | * |
| 219 | ******************************************************************************/ |
| 220 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 221 | acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 223 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 224 | union acpi_operand_object *return_desc = NULL; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 225 | u64 index; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 226 | acpi_status status = AE_OK; |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 227 | acpi_size length = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 229 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 230 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 232 | /* Execute the opcode */ |
| 233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if (walk_state->op_info->flags & AML_MATH) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | /* All simple math opcodes (add, etc.) */ |
| 237 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 238 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | if (!return_desc) { |
| 240 | status = AE_NO_MEMORY; |
| 241 | goto cleanup; |
| 242 | } |
| 243 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 244 | return_desc->integer.value = |
| 245 | acpi_ex_do_math_op(walk_state->opcode, |
| 246 | operand[0]->integer.value, |
| 247 | operand[1]->integer.value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | goto store_result_to_target; |
| 249 | } |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | switch (walk_state->opcode) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 252 | case AML_MOD_OP: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | if (!return_desc) { |
| 256 | status = AE_NO_MEMORY; |
| 257 | goto cleanup; |
| 258 | } |
| 259 | |
| 260 | /* return_desc will contain the remainder */ |
| 261 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 262 | status = acpi_ut_divide(operand[0]->integer.value, |
| 263 | operand[1]->integer.value, |
| 264 | NULL, &return_desc->integer.value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | break; |
| 266 | |
Bob Moore | 9ff5a21a | 2017-04-26 16:18:40 +0800 | [diff] [blame] | 267 | case AML_CONCATENATE_OP: /* Concatenate (Data1, Data2, Result) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 269 | status = |
| 270 | acpi_ex_do_concatenate(operand[0], operand[1], &return_desc, |
| 271 | walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | break; |
| 273 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 274 | case AML_TO_STRING_OP: /* to_string (Buffer, Length, Result) (ACPI 2.0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | /* |
| 276 | * Input object is guaranteed to be a buffer at this point (it may have |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 277 | * been converted.) Copy the raw buffer data to a new object of |
| 278 | * type String. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | */ |
| 280 | |
| 281 | /* |
| 282 | * Get the length of the new string. It is the smallest of: |
| 283 | * 1) Length of the input buffer |
| 284 | * 2) Max length as specified in the to_string operator |
| 285 | * 3) Length of input buffer up to a zero byte (null terminator) |
| 286 | * |
| 287 | * NOTE: A length of zero is ok, and will create a zero-length, null |
| 288 | * terminated string. |
| 289 | */ |
Bob Moore | 9f4a297 | 2018-12-13 12:30:28 -0800 | [diff] [blame] | 290 | while ((length < operand[0]->buffer.length) && /* Length of input buffer */ |
| 291 | (length < operand[1]->integer.value) && /* Length operand */ |
| 292 | (operand[0]->buffer.pointer[length])) { /* Null terminator */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | length++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /* Allocate a new string object */ |
| 297 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 298 | return_desc = acpi_ut_create_string_object(length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | if (!return_desc) { |
| 300 | status = AE_NO_MEMORY; |
| 301 | goto cleanup; |
| 302 | } |
| 303 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 304 | /* |
| 305 | * Copy the raw buffer data with no transform. |
| 306 | * (NULL terminated already) |
| 307 | */ |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 308 | memcpy(return_desc->string.pointer, |
| 309 | operand[0]->buffer.pointer, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | break; |
| 311 | |
Bob Moore | 9ff5a21a | 2017-04-26 16:18:40 +0800 | [diff] [blame] | 312 | case AML_CONCATENATE_TEMPLATE_OP: |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 313 | |
| 314 | /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 316 | status = |
| 317 | acpi_ex_concat_template(operand[0], operand[1], |
| 318 | &return_desc, walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | break; |
| 320 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 321 | case AML_INDEX_OP: /* Index (Source Index Result) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | /* Create the internal return object */ |
| 324 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 325 | return_desc = |
| 326 | acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | if (!return_desc) { |
| 328 | status = AE_NO_MEMORY; |
| 329 | goto cleanup; |
| 330 | } |
| 331 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 332 | /* Initialize the Index reference object */ |
| 333 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 334 | index = operand[1]->integer.value; |
Bob Moore | 1044f1f | 2008-09-27 11:08:41 +0800 | [diff] [blame] | 335 | return_desc->reference.value = (u32) index; |
| 336 | return_desc->reference.class = ACPI_REFCLASS_INDEX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 338 | /* |
| 339 | * At this point, the Source operand is a String, Buffer, or Package. |
| 340 | * Verify that the index is within range. |
| 341 | */ |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 342 | switch ((operand[0])->common.type) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 343 | case ACPI_TYPE_STRING: |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 344 | |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 345 | if (index >= operand[0]->string.length) { |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 346 | length = operand[0]->string.length; |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 347 | status = AE_AML_STRING_LIMIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | } |
| 349 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 350 | return_desc->reference.target_type = |
| 351 | ACPI_TYPE_BUFFER_FIELD; |
Bob Moore | fde175e | 2015-07-01 14:44:44 +0800 | [diff] [blame] | 352 | return_desc->reference.index_pointer = |
| 353 | &(operand[0]->buffer.pointer[index]); |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 354 | break; |
| 355 | |
| 356 | case ACPI_TYPE_BUFFER: |
| 357 | |
| 358 | if (index >= operand[0]->buffer.length) { |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 359 | length = operand[0]->buffer.length; |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 360 | status = AE_AML_BUFFER_LIMIT; |
| 361 | } |
| 362 | |
| 363 | return_desc->reference.target_type = |
| 364 | ACPI_TYPE_BUFFER_FIELD; |
Bob Moore | fde175e | 2015-07-01 14:44:44 +0800 | [diff] [blame] | 365 | return_desc->reference.index_pointer = |
| 366 | &(operand[0]->buffer.pointer[index]); |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 367 | break; |
| 368 | |
| 369 | case ACPI_TYPE_PACKAGE: |
| 370 | |
| 371 | if (index >= operand[0]->package.count) { |
Bob Moore | 663b95f | 2013-04-12 00:25:24 +0000 | [diff] [blame] | 372 | length = operand[0]->package.count; |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 373 | status = AE_AML_PACKAGE_LIMIT; |
| 374 | } |
| 375 | |
| 376 | return_desc->reference.target_type = ACPI_TYPE_PACKAGE; |
| 377 | return_desc->reference.where = |
| 378 | &operand[0]->package.elements[index]; |
| 379 | break; |
| 380 | |
| 381 | default: |
| 382 | |
Bob Moore | 376a588 | 2017-08-03 14:27:28 +0800 | [diff] [blame] | 383 | ACPI_ERROR((AE_INFO, |
| 384 | "Invalid object type: %X", |
| 385 | (operand[0])->common.type)); |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 386 | status = AE_AML_INTERNAL; |
| 387 | goto cleanup; |
| 388 | } |
| 389 | |
| 390 | /* Failure means that the Index was beyond the end of the object */ |
| 391 | |
| 392 | if (ACPI_FAILURE(status)) { |
Bob Moore | f13c274 | 2019-01-14 09:55:23 -0800 | [diff] [blame] | 393 | ACPI_BIOS_EXCEPTION((AE_INFO, status, |
| 394 | "Index (0x%X%8.8X) is beyond end of object (length 0x%X)", |
| 395 | ACPI_FORMAT_UINT64(index), |
| 396 | (u32)length)); |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 397 | goto cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | /* |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 401 | * Save the target object and add a reference to it for the life |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 402 | * of the index |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | */ |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 404 | return_desc->reference.object = operand[0]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 405 | acpi_ut_add_reference(operand[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | /* Store the reference to the Target */ |
| 408 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 409 | status = acpi_ex_store(return_desc, operand[2], walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
| 411 | /* Return the reference */ |
| 412 | |
| 413 | walk_state->result_obj = return_desc; |
| 414 | goto cleanup; |
| 415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | default: |
| 417 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 418 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 419 | walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | status = AE_AML_BAD_OPCODE; |
| 421 | break; |
| 422 | } |
| 423 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 424 | store_result_to_target: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 426 | if (ACPI_SUCCESS(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | /* |
| 428 | * Store the result of the operation (which is now in return_desc) into |
| 429 | * the Target descriptor. |
| 430 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 431 | status = acpi_ex_store(return_desc, operand[2], walk_state); |
| 432 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | goto cleanup; |
| 434 | } |
| 435 | |
| 436 | if (!walk_state->result_obj) { |
| 437 | walk_state->result_obj = return_desc; |
| 438 | } |
| 439 | } |
| 440 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 441 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | /* Delete return object on error */ |
| 444 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 445 | if (ACPI_FAILURE(status)) { |
| 446 | acpi_ut_remove_reference(return_desc); |
Bob Moore | 4b6e16c | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 447 | walk_state->result_obj = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | } |
| 449 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 450 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | /******************************************************************************* |
| 454 | * |
| 455 | * FUNCTION: acpi_ex_opcode_2A_0T_1R |
| 456 | * |
| 457 | * PARAMETERS: walk_state - Current walk state |
| 458 | * |
| 459 | * RETURN: Status |
| 460 | * |
| 461 | * DESCRIPTION: Execute opcode with 2 arguments, no target, and a return value |
| 462 | * |
| 463 | ******************************************************************************/ |
| 464 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 465 | acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 467 | union acpi_operand_object **operand = &walk_state->operands[0]; |
| 468 | union acpi_operand_object *return_desc = NULL; |
| 469 | acpi_status status = AE_OK; |
| 470 | u8 logical_result = FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 472 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 473 | acpi_ps_get_opcode_name(walk_state->opcode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | /* Create the internal return object */ |
| 476 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 477 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | if (!return_desc) { |
| 479 | status = AE_NO_MEMORY; |
| 480 | goto cleanup; |
| 481 | } |
| 482 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 483 | /* Execute the Opcode */ |
| 484 | |
| 485 | if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 486 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 487 | /* logical_op (Operand0, Operand1) */ |
| 488 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 489 | status = acpi_ex_do_logical_numeric_op(walk_state->opcode, |
| 490 | operand[0]->integer. |
| 491 | value, |
| 492 | operand[1]->integer. |
| 493 | value, &logical_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | goto store_logical_result; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 495 | } else if (walk_state->op_info->flags & AML_LOGICAL) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 496 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 497 | /* logical_op (Operand0, Operand1) */ |
| 498 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 499 | status = acpi_ex_do_logical_op(walk_state->opcode, operand[0], |
| 500 | operand[1], &logical_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | goto store_logical_result; |
| 502 | } |
| 503 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | switch (walk_state->opcode) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 505 | case AML_ACQUIRE_OP: /* Acquire (mutex_object, Timeout) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 507 | status = |
| 508 | acpi_ex_acquire_mutex(operand[1], operand[0], walk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | if (status == AE_TIME) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 510 | logical_result = TRUE; /* TRUE = Acquire timed out */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | status = AE_OK; |
| 512 | } |
| 513 | break; |
| 514 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 515 | case AML_WAIT_OP: /* Wait (event_object, Timeout) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 517 | status = acpi_ex_system_wait_event(operand[1], operand[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | if (status == AE_TIME) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 519 | logical_result = TRUE; /* TRUE, Wait timed out */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | status = AE_OK; |
| 521 | } |
| 522 | break; |
| 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | default: |
| 525 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 526 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 527 | walk_state->opcode)); |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 528 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | status = AE_AML_BAD_OPCODE; |
| 530 | goto cleanup; |
| 531 | } |
| 532 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 533 | store_logical_result: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | /* |
| 535 | * Set return value to according to logical_result. logical TRUE (all ones) |
| 536 | * Default is FALSE (zero) |
| 537 | */ |
| 538 | if (logical_result) { |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 539 | return_desc->integer.value = ACPI_UINT64_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
| 541 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 542 | cleanup: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
| 544 | /* Delete return object on error */ |
| 545 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 546 | if (ACPI_FAILURE(status)) { |
| 547 | acpi_ut_remove_reference(return_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | } |
| 549 | |
Bob Moore | 4b6e16c | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 550 | /* Save return object on success */ |
| 551 | |
| 552 | else { |
| 553 | walk_state->result_obj = return_desc; |
| 554 | } |
| 555 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 556 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |