blob: 03241d18ac1d77b56c0823d815251be16044e83f [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/******************************************************************************
3 *
4 * Module Name: exoparg2 - AML execution - opcodes with 2 arguments
5 *
Bob Moore800ba7c2020-01-10 11:31:49 -08006 * Copyright (C) 2000 - 2020, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050011#include "accommon.h"
12#include "acparser.h"
13#include "acinterp.h"
14#include "acevents.h"
15#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040018ACPI_MODULE_NAME("exoparg2")
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
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 Torvalds1da177e2005-04-16 15:20:36 -070041/*******************************************************************************
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 Brown4be44fc2005-08-05 00:44:28 -040055acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Len Brown4be44fc2005-08-05 00:44:28 -040057 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 Torvalds1da177e2005-04-16 15:20:36 -070061
Bob Mooreb229cf92006-04-21 17:15:00 -040062 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_0R,
Len Brown4be44fc2005-08-05 00:44:28 -040063 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /* Examine the opcode */
66
67 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -040068 case AML_NOTIFY_OP: /* Notify (notify_object, notify_value) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 /* The first operand is a namespace node */
71
Len Brown4be44fc2005-08-05 00:44:28 -040072 node = (struct acpi_namespace_node *)operand[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 /* Second value is the notify value */
75
76 value = (u32) operand[1]->integer.value;
77
Robert Moore44f6c012005-04-18 22:49:35 -040078 /* Are notifies allowed on this object? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Len Brown4be44fc2005-08-05 00:44:28 -040080 if (!acpi_ev_is_notify_object(node)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050081 ACPI_ERROR((AE_INFO,
82 "Unexpected notify object type [%s]",
83 acpi_ut_get_type_name(node->type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 status = AE_AML_OPERAND_TYPE;
86 break;
87 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /*
90 * Dispatch the notify to the appropriate handler
91 * NOTE: the request is queued for execution after this method
Bob Moore73a30902012-10-31 02:26:55 +000092 * completes. The notify handlers are NOT invoked synchronously
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * from this thread -- because handlers may in turn run other
94 * control methods.
95 */
Len Brown4be44fc2005-08-05 00:44:28 -040096 status = acpi_ev_queue_notify_request(node, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 break;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 default:
100
Bob Mooref6a22b02010-03-05 17:56:40 +0800101 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500102 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 status = AE_AML_BAD_OPCODE;
104 }
105
Len Brown4be44fc2005-08-05 00:44:28 -0400106 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*******************************************************************************
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 Brown4be44fc2005-08-05 00:44:28 -0400122acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Len Brown4be44fc2005-08-05 00:44:28 -0400124 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 Torvalds1da177e2005-04-16 15:20:36 -0700128
Bob Mooreb229cf92006-04-21 17:15:00 -0400129 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400130 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Robert Moore44f6c012005-04-18 22:49:35 -0400132 /* Execute the opcode */
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 switch (walk_state->opcode) {
Robert Moore44f6c012005-04-18 22:49:35 -0400135 case AML_DIVIDE_OP:
136
137 /* Divide (Dividend, Divisor, remainder_result quotient_result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Len Brown4be44fc2005-08-05 00:44:28 -0400139 return_desc1 =
140 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (!return_desc1) {
142 status = AE_NO_MEMORY;
143 goto cleanup;
144 }
145
Len Brown4be44fc2005-08-05 00:44:28 -0400146 return_desc2 =
147 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (!return_desc2) {
149 status = AE_NO_MEMORY;
150 goto cleanup;
151 }
152
153 /* Quotient to return_desc1, remainder to return_desc2 */
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 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 Torvalds1da177e2005-04-16 15:20:36 -0700160 goto cleanup;
161 }
162 break;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 default:
165
Bob Mooref6a22b02010-03-05 17:56:40 +0800166 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500167 walk_state->opcode));
Bob Moore1fad8732015-12-29 13:54:36 +0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 status = AE_AML_BAD_OPCODE;
170 goto cleanup;
171 }
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* Store the results to the target reference operands */
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 status = acpi_ex_store(return_desc2, operand[2], walk_state);
176 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 goto cleanup;
178 }
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 status = acpi_ex_store(return_desc1, operand[3], walk_state);
181 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 goto cleanup;
183 }
184
Lv Zheng10622bf2013-10-29 09:30:02 +0800185cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /*
187 * Since the remainder is not returned indirectly, remove a reference to
188 * it. Only the quotient is returned indirectly.
189 */
Len Brown4be44fc2005-08-05 00:44:28 -0400190 acpi_ut_remove_reference(return_desc2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Len Brown4be44fc2005-08-05 00:44:28 -0400192 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /* Delete the return object */
195
Len Brown4be44fc2005-08-05 00:44:28 -0400196 acpi_ut_remove_reference(return_desc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198
Bob Moore4b6e16c2008-04-10 19:06:37 +0400199 /* Save return object (the remainder) on success */
200
201 else {
202 walk_state->result_obj = return_desc1;
203 }
204
Len Brown4be44fc2005-08-05 00:44:28 -0400205 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*******************************************************************************
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 Brown4be44fc2005-08-05 00:44:28 -0400221acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Len Brown4be44fc2005-08-05 00:44:28 -0400223 union acpi_operand_object **operand = &walk_state->operands[0];
224 union acpi_operand_object *return_desc = NULL;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800225 u64 index;
Len Brown4be44fc2005-08-05 00:44:28 -0400226 acpi_status status = AE_OK;
Bob Moore663b95f2013-04-12 00:25:24 +0000227 acpi_size length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Bob Mooreb229cf92006-04-21 17:15:00 -0400229 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400230 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Robert Moore44f6c012005-04-18 22:49:35 -0400232 /* Execute the opcode */
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (walk_state->op_info->flags & AML_MATH) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* All simple math opcodes (add, etc.) */
237
Len Brown4be44fc2005-08-05 00:44:28 -0400238 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (!return_desc) {
240 status = AE_NO_MEMORY;
241 goto cleanup;
242 }
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244 return_desc->integer.value =
245 acpi_ex_do_math_op(walk_state->opcode,
246 operand[0]->integer.value,
247 operand[1]->integer.value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 goto store_result_to_target;
249 }
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400252 case AML_MOD_OP: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Len Brown4be44fc2005-08-05 00:44:28 -0400254 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (!return_desc) {
256 status = AE_NO_MEMORY;
257 goto cleanup;
258 }
259
260 /* return_desc will contain the remainder */
261
Len Brown4be44fc2005-08-05 00:44:28 -0400262 status = acpi_ut_divide(operand[0]->integer.value,
263 operand[1]->integer.value,
264 NULL, &return_desc->integer.value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 break;
266
Bob Moore9ff5a21a2017-04-26 16:18:40 +0800267 case AML_CONCATENATE_OP: /* Concatenate (Data1, Data2, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Bob Moore1fad8732015-12-29 13:54:36 +0800269 status =
270 acpi_ex_do_concatenate(operand[0], operand[1], &return_desc,
271 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 break;
273
Len Brown4be44fc2005-08-05 00:44:28 -0400274 case AML_TO_STRING_OP: /* to_string (Buffer, Length, Result) (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /*
276 * Input object is guaranteed to be a buffer at this point (it may have
Robert Moore44f6c012005-04-18 22:49:35 -0400277 * been converted.) Copy the raw buffer data to a new object of
278 * type String.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
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 Moore9f4a2972018-12-13 12:30:28 -0800290 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 Torvalds1da177e2005-04-16 15:20:36 -0700293 length++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295
296 /* Allocate a new string object */
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298 return_desc = acpi_ut_create_string_object(length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (!return_desc) {
300 status = AE_NO_MEMORY;
301 goto cleanup;
302 }
303
Bob Moorec51a4de2005-11-17 13:07:00 -0500304 /*
305 * Copy the raw buffer data with no transform.
306 * (NULL terminated already)
307 */
Bob Moore4fa46162015-07-01 14:45:11 +0800308 memcpy(return_desc->string.pointer,
309 operand[0]->buffer.pointer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
311
Bob Moore9ff5a21a2017-04-26 16:18:40 +0800312 case AML_CONCATENATE_TEMPLATE_OP:
Robert Moore44f6c012005-04-18 22:49:35 -0400313
314 /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Bob Moore1fad8732015-12-29 13:54:36 +0800316 status =
317 acpi_ex_concat_template(operand[0], operand[1],
318 &return_desc, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320
Len Brown4be44fc2005-08-05 00:44:28 -0400321 case AML_INDEX_OP: /* Index (Source Index Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Create the internal return object */
324
Len Brown4be44fc2005-08-05 00:44:28 -0400325 return_desc =
326 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (!return_desc) {
328 status = AE_NO_MEMORY;
329 goto cleanup;
330 }
331
Bob Moore52fc0b02006-10-02 00:00:00 -0400332 /* Initialize the Index reference object */
333
Robert Moore44f6c012005-04-18 22:49:35 -0400334 index = operand[1]->integer.value;
Bob Moore1044f1f2008-09-27 11:08:41 +0800335 return_desc->reference.value = (u32) index;
336 return_desc->reference.class = ACPI_REFCLASS_INDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Bob Moore52fc0b02006-10-02 00:00:00 -0400338 /*
339 * At this point, the Source operand is a String, Buffer, or Package.
340 * Verify that the index is within range.
341 */
Bob Moore3371c192009-02-18 14:44:03 +0800342 switch ((operand[0])->common.type) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400343 case ACPI_TYPE_STRING:
Robert Moore44f6c012005-04-18 22:49:35 -0400344
Bob Moore52fc0b02006-10-02 00:00:00 -0400345 if (index >= operand[0]->string.length) {
Bob Moore663b95f2013-04-12 00:25:24 +0000346 length = operand[0]->string.length;
Bob Moore52fc0b02006-10-02 00:00:00 -0400347 status = AE_AML_STRING_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
Len Brown4be44fc2005-08-05 00:44:28 -0400350 return_desc->reference.target_type =
351 ACPI_TYPE_BUFFER_FIELD;
Bob Moorefde175e2015-07-01 14:44:44 +0800352 return_desc->reference.index_pointer =
353 &(operand[0]->buffer.pointer[index]);
Bob Moore52fc0b02006-10-02 00:00:00 -0400354 break;
355
356 case ACPI_TYPE_BUFFER:
357
358 if (index >= operand[0]->buffer.length) {
Bob Moore663b95f2013-04-12 00:25:24 +0000359 length = operand[0]->buffer.length;
Bob Moore52fc0b02006-10-02 00:00:00 -0400360 status = AE_AML_BUFFER_LIMIT;
361 }
362
363 return_desc->reference.target_type =
364 ACPI_TYPE_BUFFER_FIELD;
Bob Moorefde175e2015-07-01 14:44:44 +0800365 return_desc->reference.index_pointer =
366 &(operand[0]->buffer.pointer[index]);
Bob Moore52fc0b02006-10-02 00:00:00 -0400367 break;
368
369 case ACPI_TYPE_PACKAGE:
370
371 if (index >= operand[0]->package.count) {
Bob Moore663b95f2013-04-12 00:25:24 +0000372 length = operand[0]->package.count;
Bob Moore52fc0b02006-10-02 00:00:00 -0400373 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 Moore376a5882017-08-03 14:27:28 +0800383 ACPI_ERROR((AE_INFO,
384 "Invalid object type: %X",
385 (operand[0])->common.type));
Bob Moore52fc0b02006-10-02 00:00:00 -0400386 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 Mooref13c2742019-01-14 09:55:23 -0800393 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 Moore52fc0b02006-10-02 00:00:00 -0400397 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
400 /*
Bob Moore83135242006-10-03 00:00:00 -0400401 * Save the target object and add a reference to it for the life
Bob Moore52fc0b02006-10-02 00:00:00 -0400402 * of the index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 */
Bob Moore83135242006-10-03 00:00:00 -0400404 return_desc->reference.object = operand[0];
Len Brown4be44fc2005-08-05 00:44:28 -0400405 acpi_ut_add_reference(operand[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* Store the reference to the Target */
408
Len Brown4be44fc2005-08-05 00:44:28 -0400409 status = acpi_ex_store(return_desc, operand[2], walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* Return the reference */
412
413 walk_state->result_obj = return_desc;
414 goto cleanup;
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 default:
417
Bob Mooref6a22b02010-03-05 17:56:40 +0800418 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500419 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 status = AE_AML_BAD_OPCODE;
421 break;
422 }
423
Lv Zheng10622bf2013-10-29 09:30:02 +0800424store_result_to_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Len Brown4be44fc2005-08-05 00:44:28 -0400426 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /*
428 * Store the result of the operation (which is now in return_desc) into
429 * the Target descriptor.
430 */
Len Brown4be44fc2005-08-05 00:44:28 -0400431 status = acpi_ex_store(return_desc, operand[2], walk_state);
432 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 goto cleanup;
434 }
435
436 if (!walk_state->result_obj) {
437 walk_state->result_obj = return_desc;
438 }
439 }
440
Lv Zheng10622bf2013-10-29 09:30:02 +0800441cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 /* Delete return object on error */
444
Len Brown4be44fc2005-08-05 00:44:28 -0400445 if (ACPI_FAILURE(status)) {
446 acpi_ut_remove_reference(return_desc);
Bob Moore4b6e16c2008-04-10 19:06:37 +0400447 walk_state->result_obj = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
Len Brown4be44fc2005-08-05 00:44:28 -0400450 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*******************************************************************************
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 Brown4be44fc2005-08-05 00:44:28 -0400465acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Len Brown4be44fc2005-08-05 00:44:28 -0400467 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 Torvalds1da177e2005-04-16 15:20:36 -0700471
Bob Mooreb229cf92006-04-21 17:15:00 -0400472 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400473 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /* Create the internal return object */
476
Len Brown4be44fc2005-08-05 00:44:28 -0400477 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (!return_desc) {
479 status = AE_NO_MEMORY;
480 goto cleanup;
481 }
482
Robert Moore44f6c012005-04-18 22:49:35 -0400483 /* Execute the Opcode */
484
485 if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400486
Robert Moore44f6c012005-04-18 22:49:35 -0400487 /* logical_op (Operand0, Operand1) */
488
Len Brown4be44fc2005-08-05 00:44:28 -0400489 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 Torvalds1da177e2005-04-16 15:20:36 -0700494 goto store_logical_result;
Len Brown4be44fc2005-08-05 00:44:28 -0400495 } else if (walk_state->op_info->flags & AML_LOGICAL) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400496
Robert Moore44f6c012005-04-18 22:49:35 -0400497 /* logical_op (Operand0, Operand1) */
498
Len Brown4be44fc2005-08-05 00:44:28 -0400499 status = acpi_ex_do_logical_op(walk_state->opcode, operand[0],
500 operand[1], &logical_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 goto store_logical_result;
502 }
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400505 case AML_ACQUIRE_OP: /* Acquire (mutex_object, Timeout) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Len Brown4be44fc2005-08-05 00:44:28 -0400507 status =
508 acpi_ex_acquire_mutex(operand[1], operand[0], walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (status == AE_TIME) {
Len Brown4be44fc2005-08-05 00:44:28 -0400510 logical_result = TRUE; /* TRUE = Acquire timed out */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 status = AE_OK;
512 }
513 break;
514
Len Brown4be44fc2005-08-05 00:44:28 -0400515 case AML_WAIT_OP: /* Wait (event_object, Timeout) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Len Brown4be44fc2005-08-05 00:44:28 -0400517 status = acpi_ex_system_wait_event(operand[1], operand[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (status == AE_TIME) {
Len Brown4be44fc2005-08-05 00:44:28 -0400519 logical_result = TRUE; /* TRUE, Wait timed out */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 status = AE_OK;
521 }
522 break;
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 default:
525
Bob Mooref6a22b02010-03-05 17:56:40 +0800526 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500527 walk_state->opcode));
Bob Moore1fad8732015-12-29 13:54:36 +0800528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 status = AE_AML_BAD_OPCODE;
530 goto cleanup;
531 }
532
Lv Zheng10622bf2013-10-29 09:30:02 +0800533store_logical_result:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /*
535 * Set return value to according to logical_result. logical TRUE (all ones)
536 * Default is FALSE (zero)
537 */
538 if (logical_result) {
Bob Moore5df7e6c2010-01-21 10:06:32 +0800539 return_desc->integer.value = ACPI_UINT64_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
Lv Zheng10622bf2013-10-29 09:30:02 +0800542cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* Delete return object on error */
545
Len Brown4be44fc2005-08-05 00:44:28 -0400546 if (ACPI_FAILURE(status)) {
547 acpi_ut_remove_reference(return_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Bob Moore4b6e16c2008-04-10 19:06:37 +0400550 /* Save return object on success */
551
552 else {
553 walk_state->result_obj = return_desc;
554 }
555
Len Brown4be44fc2005-08-05 00:44:28 -0400556 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}