blob: 57980b7d35940a3b59ac39db699ed416e2521187 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exoparg2 - AML execution - opcodes with 2 arguments
4 *
5 *****************************************************************************/
6
7/*
Bob Moore7735ca02017-02-08 11:00:08 +08008 * Copyright (C) 2000 - 2017, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acparser.h"
47#include "acinterp.h"
48#include "acevents.h"
49#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("exoparg2")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*!
55 * Naming convention for AML interpreter execution routines.
56 *
57 * The routines that begin execution of AML opcodes are named with a common
58 * convention based upon the number of arguments, the number of target operands,
59 * and whether or not a value is returned:
60 *
61 * AcpiExOpcode_xA_yT_zR
62 *
63 * Where:
64 *
65 * xA - ARGUMENTS: The number of arguments (input operands) that are
66 * required for this opcode type (1 through 6 args).
67 * yT - TARGETS: The number of targets (output operands) that are required
68 * for this opcode type (0, 1, or 2 targets).
69 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
70 * as the function return (0 or 1).
71 *
72 * The AcpiExOpcode* functions are called via the Dispatcher component with
73 * fully resolved operands.
74!*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*******************************************************************************
76 *
77 * FUNCTION: acpi_ex_opcode_2A_0T_0R
78 *
79 * PARAMETERS: walk_state - Current walk state
80 *
81 * RETURN: Status
82 *
83 * DESCRIPTION: Execute opcode with two arguments, no target, and no return
84 * value.
85 *
86 * ALLOCATION: Deletes both operands
87 *
88 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040089acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Len Brown4be44fc2005-08-05 00:44:28 -040091 union acpi_operand_object **operand = &walk_state->operands[0];
92 struct acpi_namespace_node *node;
93 u32 value;
94 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Bob Mooreb229cf92006-04-21 17:15:00 -040096 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_0R,
Len Brown4be44fc2005-08-05 00:44:28 -040097 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 /* Examine the opcode */
100
101 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400102 case AML_NOTIFY_OP: /* Notify (notify_object, notify_value) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /* The first operand is a namespace node */
105
Len Brown4be44fc2005-08-05 00:44:28 -0400106 node = (struct acpi_namespace_node *)operand[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 /* Second value is the notify value */
109
110 value = (u32) operand[1]->integer.value;
111
Robert Moore44f6c012005-04-18 22:49:35 -0400112 /* Are notifies allowed on this object? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Len Brown4be44fc2005-08-05 00:44:28 -0400114 if (!acpi_ev_is_notify_object(node)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500115 ACPI_ERROR((AE_INFO,
116 "Unexpected notify object type [%s]",
117 acpi_ut_get_type_name(node->type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 status = AE_AML_OPERAND_TYPE;
120 break;
121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 /*
124 * Dispatch the notify to the appropriate handler
125 * NOTE: the request is queued for execution after this method
Bob Moore73a30902012-10-31 02:26:55 +0000126 * completes. The notify handlers are NOT invoked synchronously
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 * from this thread -- because handlers may in turn run other
128 * control methods.
129 */
Len Brown4be44fc2005-08-05 00:44:28 -0400130 status = acpi_ev_queue_notify_request(node, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 break;
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 default:
134
Bob Mooref6a22b02010-03-05 17:56:40 +0800135 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500136 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 status = AE_AML_BAD_OPCODE;
138 }
139
Len Brown4be44fc2005-08-05 00:44:28 -0400140 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*******************************************************************************
144 *
145 * FUNCTION: acpi_ex_opcode_2A_2T_1R
146 *
147 * PARAMETERS: walk_state - Current walk state
148 *
149 * RETURN: Status
150 *
151 * DESCRIPTION: Execute a dyadic operator (2 operands) with 2 output targets
152 * and one implicit return value.
153 *
154 ******************************************************************************/
155
Len Brown4be44fc2005-08-05 00:44:28 -0400156acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Len Brown4be44fc2005-08-05 00:44:28 -0400158 union acpi_operand_object **operand = &walk_state->operands[0];
159 union acpi_operand_object *return_desc1 = NULL;
160 union acpi_operand_object *return_desc2 = NULL;
161 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Bob Mooreb229cf92006-04-21 17:15:00 -0400163 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400164 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Robert Moore44f6c012005-04-18 22:49:35 -0400166 /* Execute the opcode */
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 switch (walk_state->opcode) {
Robert Moore44f6c012005-04-18 22:49:35 -0400169 case AML_DIVIDE_OP:
170
171 /* Divide (Dividend, Divisor, remainder_result quotient_result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Len Brown4be44fc2005-08-05 00:44:28 -0400173 return_desc1 =
174 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (!return_desc1) {
176 status = AE_NO_MEMORY;
177 goto cleanup;
178 }
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 return_desc2 =
181 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (!return_desc2) {
183 status = AE_NO_MEMORY;
184 goto cleanup;
185 }
186
187 /* Quotient to return_desc1, remainder to return_desc2 */
188
Len Brown4be44fc2005-08-05 00:44:28 -0400189 status = acpi_ut_divide(operand[0]->integer.value,
190 operand[1]->integer.value,
191 &return_desc1->integer.value,
192 &return_desc2->integer.value);
193 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 goto cleanup;
195 }
196 break;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 default:
199
Bob Mooref6a22b02010-03-05 17:56:40 +0800200 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500201 walk_state->opcode));
Bob Moore1fad8732015-12-29 13:54:36 +0800202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 status = AE_AML_BAD_OPCODE;
204 goto cleanup;
205 }
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* Store the results to the target reference operands */
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209 status = acpi_ex_store(return_desc2, operand[2], walk_state);
210 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto cleanup;
212 }
213
Len Brown4be44fc2005-08-05 00:44:28 -0400214 status = acpi_ex_store(return_desc1, operand[3], walk_state);
215 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 goto cleanup;
217 }
218
Lv Zheng10622bf2013-10-29 09:30:02 +0800219cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /*
221 * Since the remainder is not returned indirectly, remove a reference to
222 * it. Only the quotient is returned indirectly.
223 */
Len Brown4be44fc2005-08-05 00:44:28 -0400224 acpi_ut_remove_reference(return_desc2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Len Brown4be44fc2005-08-05 00:44:28 -0400226 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /* Delete the return object */
229
Len Brown4be44fc2005-08-05 00:44:28 -0400230 acpi_ut_remove_reference(return_desc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Bob Moore4b6e16c2008-04-10 19:06:37 +0400233 /* Save return object (the remainder) on success */
234
235 else {
236 walk_state->result_obj = return_desc1;
237 }
238
Len Brown4be44fc2005-08-05 00:44:28 -0400239 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242/*******************************************************************************
243 *
244 * FUNCTION: acpi_ex_opcode_2A_1T_1R
245 *
246 * PARAMETERS: walk_state - Current walk state
247 *
248 * RETURN: Status
249 *
250 * DESCRIPTION: Execute opcode with two arguments, one target, and a return
251 * value.
252 *
253 ******************************************************************************/
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Len Brown4be44fc2005-08-05 00:44:28 -0400257 union acpi_operand_object **operand = &walk_state->operands[0];
258 union acpi_operand_object *return_desc = NULL;
Bob Moore5df7e6c2010-01-21 10:06:32 +0800259 u64 index;
Len Brown4be44fc2005-08-05 00:44:28 -0400260 acpi_status status = AE_OK;
Bob Moore663b95f2013-04-12 00:25:24 +0000261 acpi_size length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Bob Mooreb229cf92006-04-21 17:15:00 -0400263 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400264 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Robert Moore44f6c012005-04-18 22:49:35 -0400266 /* Execute the opcode */
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (walk_state->op_info->flags & AML_MATH) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* All simple math opcodes (add, etc.) */
271
Len Brown4be44fc2005-08-05 00:44:28 -0400272 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!return_desc) {
274 status = AE_NO_MEMORY;
275 goto cleanup;
276 }
277
Len Brown4be44fc2005-08-05 00:44:28 -0400278 return_desc->integer.value =
279 acpi_ex_do_math_op(walk_state->opcode,
280 operand[0]->integer.value,
281 operand[1]->integer.value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 goto store_result_to_target;
283 }
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400286 case AML_MOD_OP: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Len Brown4be44fc2005-08-05 00:44:28 -0400288 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!return_desc) {
290 status = AE_NO_MEMORY;
291 goto cleanup;
292 }
293
294 /* return_desc will contain the remainder */
295
Len Brown4be44fc2005-08-05 00:44:28 -0400296 status = acpi_ut_divide(operand[0]->integer.value,
297 operand[1]->integer.value,
298 NULL, &return_desc->integer.value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 break;
300
Bob Moore9ff5a21a2017-04-26 16:18:40 +0800301 case AML_CONCATENATE_OP: /* Concatenate (Data1, Data2, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Bob Moore1fad8732015-12-29 13:54:36 +0800303 status =
304 acpi_ex_do_concatenate(operand[0], operand[1], &return_desc,
305 walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 break;
307
Len Brown4be44fc2005-08-05 00:44:28 -0400308 case AML_TO_STRING_OP: /* to_string (Buffer, Length, Result) (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /*
310 * Input object is guaranteed to be a buffer at this point (it may have
Robert Moore44f6c012005-04-18 22:49:35 -0400311 * been converted.) Copy the raw buffer data to a new object of
312 * type String.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 */
314
315 /*
316 * Get the length of the new string. It is the smallest of:
317 * 1) Length of the input buffer
318 * 2) Max length as specified in the to_string operator
319 * 3) Length of input buffer up to a zero byte (null terminator)
320 *
321 * NOTE: A length of zero is ok, and will create a zero-length, null
322 * terminated string.
323 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 while ((length < operand[0]->buffer.length) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400325 (length < operand[1]->integer.value) &&
326 (operand[0]->buffer.pointer[length])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 length++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
330 /* Allocate a new string object */
331
Len Brown4be44fc2005-08-05 00:44:28 -0400332 return_desc = acpi_ut_create_string_object(length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (!return_desc) {
334 status = AE_NO_MEMORY;
335 goto cleanup;
336 }
337
Bob Moorec51a4de2005-11-17 13:07:00 -0500338 /*
339 * Copy the raw buffer data with no transform.
340 * (NULL terminated already)
341 */
Bob Moore4fa46162015-07-01 14:45:11 +0800342 memcpy(return_desc->string.pointer,
343 operand[0]->buffer.pointer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
345
Bob Moore9ff5a21a2017-04-26 16:18:40 +0800346 case AML_CONCATENATE_TEMPLATE_OP:
Robert Moore44f6c012005-04-18 22:49:35 -0400347
348 /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Bob Moore1fad8732015-12-29 13:54:36 +0800350 status =
351 acpi_ex_concat_template(operand[0], operand[1],
352 &return_desc, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 break;
354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 case AML_INDEX_OP: /* Index (Source Index Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Create the internal return object */
358
Len Brown4be44fc2005-08-05 00:44:28 -0400359 return_desc =
360 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (!return_desc) {
362 status = AE_NO_MEMORY;
363 goto cleanup;
364 }
365
Bob Moore52fc0b02006-10-02 00:00:00 -0400366 /* Initialize the Index reference object */
367
Robert Moore44f6c012005-04-18 22:49:35 -0400368 index = operand[1]->integer.value;
Bob Moore1044f1f2008-09-27 11:08:41 +0800369 return_desc->reference.value = (u32) index;
370 return_desc->reference.class = ACPI_REFCLASS_INDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Bob Moore52fc0b02006-10-02 00:00:00 -0400372 /*
373 * At this point, the Source operand is a String, Buffer, or Package.
374 * Verify that the index is within range.
375 */
Bob Moore3371c192009-02-18 14:44:03 +0800376 switch ((operand[0])->common.type) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400377 case ACPI_TYPE_STRING:
Robert Moore44f6c012005-04-18 22:49:35 -0400378
Bob Moore52fc0b02006-10-02 00:00:00 -0400379 if (index >= operand[0]->string.length) {
Bob Moore663b95f2013-04-12 00:25:24 +0000380 length = operand[0]->string.length;
Bob Moore52fc0b02006-10-02 00:00:00 -0400381 status = AE_AML_STRING_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Len Brown4be44fc2005-08-05 00:44:28 -0400384 return_desc->reference.target_type =
385 ACPI_TYPE_BUFFER_FIELD;
Bob Moorefde175e2015-07-01 14:44:44 +0800386 return_desc->reference.index_pointer =
387 &(operand[0]->buffer.pointer[index]);
Bob Moore52fc0b02006-10-02 00:00:00 -0400388 break;
389
390 case ACPI_TYPE_BUFFER:
391
392 if (index >= operand[0]->buffer.length) {
Bob Moore663b95f2013-04-12 00:25:24 +0000393 length = operand[0]->buffer.length;
Bob Moore52fc0b02006-10-02 00:00:00 -0400394 status = AE_AML_BUFFER_LIMIT;
395 }
396
397 return_desc->reference.target_type =
398 ACPI_TYPE_BUFFER_FIELD;
Bob Moorefde175e2015-07-01 14:44:44 +0800399 return_desc->reference.index_pointer =
400 &(operand[0]->buffer.pointer[index]);
Bob Moore52fc0b02006-10-02 00:00:00 -0400401 break;
402
403 case ACPI_TYPE_PACKAGE:
404
405 if (index >= operand[0]->package.count) {
Bob Moore663b95f2013-04-12 00:25:24 +0000406 length = operand[0]->package.count;
Bob Moore52fc0b02006-10-02 00:00:00 -0400407 status = AE_AML_PACKAGE_LIMIT;
408 }
409
410 return_desc->reference.target_type = ACPI_TYPE_PACKAGE;
411 return_desc->reference.where =
412 &operand[0]->package.elements[index];
413 break;
414
415 default:
416
Bob Moore376a5882017-08-03 14:27:28 +0800417 ACPI_ERROR((AE_INFO,
418 "Invalid object type: %X",
419 (operand[0])->common.type));
Bob Moore52fc0b02006-10-02 00:00:00 -0400420 status = AE_AML_INTERNAL;
421 goto cleanup;
422 }
423
424 /* Failure means that the Index was beyond the end of the object */
425
426 if (ACPI_FAILURE(status)) {
427 ACPI_EXCEPTION((AE_INFO, status,
Bob Moore663b95f2013-04-12 00:25:24 +0000428 "Index (0x%X%8.8X) is beyond end of object (length 0x%X)",
Bob Moore475df482013-04-12 00:25:35 +0000429 ACPI_FORMAT_UINT64(index),
430 (u32)length));
Bob Moore52fc0b02006-10-02 00:00:00 -0400431 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
434 /*
Bob Moore83135242006-10-03 00:00:00 -0400435 * Save the target object and add a reference to it for the life
Bob Moore52fc0b02006-10-02 00:00:00 -0400436 * of the index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 */
Bob Moore83135242006-10-03 00:00:00 -0400438 return_desc->reference.object = operand[0];
Len Brown4be44fc2005-08-05 00:44:28 -0400439 acpi_ut_add_reference(operand[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /* Store the reference to the Target */
442
Len Brown4be44fc2005-08-05 00:44:28 -0400443 status = acpi_ex_store(return_desc, operand[2], walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 /* Return the reference */
446
447 walk_state->result_obj = return_desc;
448 goto cleanup;
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 default:
451
Bob Mooref6a22b02010-03-05 17:56:40 +0800452 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500453 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 status = AE_AML_BAD_OPCODE;
455 break;
456 }
457
Lv Zheng10622bf2013-10-29 09:30:02 +0800458store_result_to_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Len Brown4be44fc2005-08-05 00:44:28 -0400460 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /*
462 * Store the result of the operation (which is now in return_desc) into
463 * the Target descriptor.
464 */
Len Brown4be44fc2005-08-05 00:44:28 -0400465 status = acpi_ex_store(return_desc, operand[2], walk_state);
466 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto cleanup;
468 }
469
470 if (!walk_state->result_obj) {
471 walk_state->result_obj = return_desc;
472 }
473 }
474
Lv Zheng10622bf2013-10-29 09:30:02 +0800475cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 /* Delete return object on error */
478
Len Brown4be44fc2005-08-05 00:44:28 -0400479 if (ACPI_FAILURE(status)) {
480 acpi_ut_remove_reference(return_desc);
Bob Moore4b6e16c2008-04-10 19:06:37 +0400481 walk_state->result_obj = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
Len Brown4be44fc2005-08-05 00:44:28 -0400484 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*******************************************************************************
488 *
489 * FUNCTION: acpi_ex_opcode_2A_0T_1R
490 *
491 * PARAMETERS: walk_state - Current walk state
492 *
493 * RETURN: Status
494 *
495 * DESCRIPTION: Execute opcode with 2 arguments, no target, and a return value
496 *
497 ******************************************************************************/
498
Len Brown4be44fc2005-08-05 00:44:28 -0400499acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Len Brown4be44fc2005-08-05 00:44:28 -0400501 union acpi_operand_object **operand = &walk_state->operands[0];
502 union acpi_operand_object *return_desc = NULL;
503 acpi_status status = AE_OK;
504 u8 logical_result = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Bob Mooreb229cf92006-04-21 17:15:00 -0400506 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400507 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /* Create the internal return object */
510
Len Brown4be44fc2005-08-05 00:44:28 -0400511 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (!return_desc) {
513 status = AE_NO_MEMORY;
514 goto cleanup;
515 }
516
Robert Moore44f6c012005-04-18 22:49:35 -0400517 /* Execute the Opcode */
518
519 if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400520
Robert Moore44f6c012005-04-18 22:49:35 -0400521 /* logical_op (Operand0, Operand1) */
522
Len Brown4be44fc2005-08-05 00:44:28 -0400523 status = acpi_ex_do_logical_numeric_op(walk_state->opcode,
524 operand[0]->integer.
525 value,
526 operand[1]->integer.
527 value, &logical_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 goto store_logical_result;
Len Brown4be44fc2005-08-05 00:44:28 -0400529 } else if (walk_state->op_info->flags & AML_LOGICAL) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400530
Robert Moore44f6c012005-04-18 22:49:35 -0400531 /* logical_op (Operand0, Operand1) */
532
Len Brown4be44fc2005-08-05 00:44:28 -0400533 status = acpi_ex_do_logical_op(walk_state->opcode, operand[0],
534 operand[1], &logical_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 goto store_logical_result;
536 }
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400539 case AML_ACQUIRE_OP: /* Acquire (mutex_object, Timeout) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Len Brown4be44fc2005-08-05 00:44:28 -0400541 status =
542 acpi_ex_acquire_mutex(operand[1], operand[0], walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (status == AE_TIME) {
Len Brown4be44fc2005-08-05 00:44:28 -0400544 logical_result = TRUE; /* TRUE = Acquire timed out */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 status = AE_OK;
546 }
547 break;
548
Len Brown4be44fc2005-08-05 00:44:28 -0400549 case AML_WAIT_OP: /* Wait (event_object, Timeout) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Len Brown4be44fc2005-08-05 00:44:28 -0400551 status = acpi_ex_system_wait_event(operand[1], operand[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (status == AE_TIME) {
Len Brown4be44fc2005-08-05 00:44:28 -0400553 logical_result = TRUE; /* TRUE, Wait timed out */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 status = AE_OK;
555 }
556 break;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 default:
559
Bob Mooref6a22b02010-03-05 17:56:40 +0800560 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500561 walk_state->opcode));
Bob Moore1fad8732015-12-29 13:54:36 +0800562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 status = AE_AML_BAD_OPCODE;
564 goto cleanup;
565 }
566
Lv Zheng10622bf2013-10-29 09:30:02 +0800567store_logical_result:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /*
569 * Set return value to according to logical_result. logical TRUE (all ones)
570 * Default is FALSE (zero)
571 */
572 if (logical_result) {
Bob Moore5df7e6c2010-01-21 10:06:32 +0800573 return_desc->integer.value = ACPI_UINT64_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575
Lv Zheng10622bf2013-10-29 09:30:02 +0800576cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 /* Delete return object on error */
579
Len Brown4be44fc2005-08-05 00:44:28 -0400580 if (ACPI_FAILURE(status)) {
581 acpi_ut_remove_reference(return_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
Bob Moore4b6e16c2008-04-10 19:06:37 +0400584 /* Save return object on success */
585
586 else {
587 walk_state->result_obj = return_desc;
588 }
589
Len Brown4be44fc2005-08-05 00:44:28 -0400590 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}