blob: 85d95c92dfd3d72d3c35659e5fb64a54111708ed [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/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, 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#ifdef ACPI_GPE_NOTIFY_CHECK
123 /*
124 * GPE method wake/notify check. Here, we want to ensure that we
Bob Mooreb229cf92006-04-21 17:15:00 -0400125 * don't receive any "DeviceWake" Notifies from a GPE _Lxx or _Exx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * GPE method during system runtime. If we do, the GPE is marked
127 * as "wake-only" and disabled.
128 *
129 * 1) Is the Notify() value == device_wake?
130 * 2) Is this a GPE deferred method? (An _Lxx or _Exx method)
131 * 3) Did the original GPE happen at system runtime?
132 * (versus during wake)
133 *
134 * If all three cases are true, this is a wake-only GPE that should
135 * be disabled at runtime.
136 */
Len Brown4be44fc2005-08-05 00:44:28 -0400137 if (value == 2) { /* device_wake */
138 status =
139 acpi_ev_check_for_wake_only_gpe(walk_state->
140 gpe_event_info);
141 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* AE_WAKE_ONLY_GPE only error, means ignore this notify */
144
Len Brown4be44fc2005-08-05 00:44:28 -0400145 return_ACPI_STATUS(AE_OK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147 }
148#endif
149
150 /*
151 * Dispatch the notify to the appropriate handler
152 * NOTE: the request is queued for execution after this method
153 * completes. The notify handlers are NOT invoked synchronously
154 * from this thread -- because handlers may in turn run other
155 * control methods.
156 */
Len Brown4be44fc2005-08-05 00:44:28 -0400157 status = acpi_ev_queue_notify_request(node, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 break;
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 default:
161
Bob Mooreb8e4d892006-01-27 16:43:00 -0500162 ACPI_ERROR((AE_INFO, "Unknown AML opcode %X",
163 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 status = AE_AML_BAD_OPCODE;
165 }
166
Len Brown4be44fc2005-08-05 00:44:28 -0400167 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*******************************************************************************
171 *
172 * FUNCTION: acpi_ex_opcode_2A_2T_1R
173 *
174 * PARAMETERS: walk_state - Current walk state
175 *
176 * RETURN: Status
177 *
178 * DESCRIPTION: Execute a dyadic operator (2 operands) with 2 output targets
179 * and one implicit return value.
180 *
181 ******************************************************************************/
182
Len Brown4be44fc2005-08-05 00:44:28 -0400183acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Len Brown4be44fc2005-08-05 00:44:28 -0400185 union acpi_operand_object **operand = &walk_state->operands[0];
186 union acpi_operand_object *return_desc1 = NULL;
187 union acpi_operand_object *return_desc2 = NULL;
188 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Bob Mooreb229cf92006-04-21 17:15:00 -0400190 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400191 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Robert Moore44f6c012005-04-18 22:49:35 -0400193 /* Execute the opcode */
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 switch (walk_state->opcode) {
Robert Moore44f6c012005-04-18 22:49:35 -0400196 case AML_DIVIDE_OP:
197
198 /* Divide (Dividend, Divisor, remainder_result quotient_result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Len Brown4be44fc2005-08-05 00:44:28 -0400200 return_desc1 =
201 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (!return_desc1) {
203 status = AE_NO_MEMORY;
204 goto cleanup;
205 }
206
Len Brown4be44fc2005-08-05 00:44:28 -0400207 return_desc2 =
208 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (!return_desc2) {
210 status = AE_NO_MEMORY;
211 goto cleanup;
212 }
213
214 /* Quotient to return_desc1, remainder to return_desc2 */
215
Len Brown4be44fc2005-08-05 00:44:28 -0400216 status = acpi_ut_divide(operand[0]->integer.value,
217 operand[1]->integer.value,
218 &return_desc1->integer.value,
219 &return_desc2->integer.value);
220 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 goto cleanup;
222 }
223 break;
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 default:
226
Bob Mooreb8e4d892006-01-27 16:43:00 -0500227 ACPI_ERROR((AE_INFO, "Unknown AML opcode %X",
228 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 status = AE_AML_BAD_OPCODE;
230 goto cleanup;
231 }
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* Store the results to the target reference operands */
234
Len Brown4be44fc2005-08-05 00:44:28 -0400235 status = acpi_ex_store(return_desc2, operand[2], walk_state);
236 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 goto cleanup;
238 }
239
Len Brown4be44fc2005-08-05 00:44:28 -0400240 status = acpi_ex_store(return_desc1, operand[3], walk_state);
241 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto cleanup;
243 }
244
Len Brown4be44fc2005-08-05 00:44:28 -0400245 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /*
247 * Since the remainder is not returned indirectly, remove a reference to
248 * it. Only the quotient is returned indirectly.
249 */
Len Brown4be44fc2005-08-05 00:44:28 -0400250 acpi_ut_remove_reference(return_desc2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 if (ACPI_FAILURE(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* Delete the return object */
255
Len Brown4be44fc2005-08-05 00:44:28 -0400256 acpi_ut_remove_reference(return_desc1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
258
Bob Moore4b6e16c2008-04-10 19:06:37 +0400259 /* Save return object (the remainder) on success */
260
261 else {
262 walk_state->result_obj = return_desc1;
263 }
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/*******************************************************************************
269 *
270 * FUNCTION: acpi_ex_opcode_2A_1T_1R
271 *
272 * PARAMETERS: walk_state - Current walk state
273 *
274 * RETURN: Status
275 *
276 * DESCRIPTION: Execute opcode with two arguments, one target, and a return
277 * value.
278 *
279 ******************************************************************************/
280
Len Brown4be44fc2005-08-05 00:44:28 -0400281acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Len Brown4be44fc2005-08-05 00:44:28 -0400283 union acpi_operand_object **operand = &walk_state->operands[0];
284 union acpi_operand_object *return_desc = NULL;
285 acpi_integer index;
286 acpi_status status = AE_OK;
287 acpi_size length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Bob Mooreb229cf92006-04-21 17:15:00 -0400289 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400290 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Robert Moore44f6c012005-04-18 22:49:35 -0400292 /* Execute the opcode */
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (walk_state->op_info->flags & AML_MATH) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* All simple math opcodes (add, etc.) */
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (!return_desc) {
300 status = AE_NO_MEMORY;
301 goto cleanup;
302 }
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 return_desc->integer.value =
305 acpi_ex_do_math_op(walk_state->opcode,
306 operand[0]->integer.value,
307 operand[1]->integer.value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 goto store_result_to_target;
309 }
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400312 case AML_MOD_OP: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Len Brown4be44fc2005-08-05 00:44:28 -0400314 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (!return_desc) {
316 status = AE_NO_MEMORY;
317 goto cleanup;
318 }
319
320 /* return_desc will contain the remainder */
321
Len Brown4be44fc2005-08-05 00:44:28 -0400322 status = acpi_ut_divide(operand[0]->integer.value,
323 operand[1]->integer.value,
324 NULL, &return_desc->integer.value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 break;
326
Len Brown4be44fc2005-08-05 00:44:28 -0400327 case AML_CONCAT_OP: /* Concatenate (Data1, Data2, Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Len Brown4be44fc2005-08-05 00:44:28 -0400329 status = acpi_ex_do_concatenate(operand[0], operand[1],
330 &return_desc, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332
Len Brown4be44fc2005-08-05 00:44:28 -0400333 case AML_TO_STRING_OP: /* to_string (Buffer, Length, Result) (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * Input object is guaranteed to be a buffer at this point (it may have
Robert Moore44f6c012005-04-18 22:49:35 -0400337 * been converted.) Copy the raw buffer data to a new object of
338 * type String.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
340
341 /*
342 * Get the length of the new string. It is the smallest of:
343 * 1) Length of the input buffer
344 * 2) Max length as specified in the to_string operator
345 * 3) Length of input buffer up to a zero byte (null terminator)
346 *
347 * NOTE: A length of zero is ok, and will create a zero-length, null
348 * terminated string.
349 */
350 length = 0;
351 while ((length < operand[0]->buffer.length) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400352 (length < operand[1]->integer.value) &&
353 (operand[0]->buffer.pointer[length])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 length++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 /* Allocate a new string object */
358
Len Brown4be44fc2005-08-05 00:44:28 -0400359 return_desc = acpi_ut_create_string_object(length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (!return_desc) {
361 status = AE_NO_MEMORY;
362 goto cleanup;
363 }
364
Bob Moorec51a4de2005-11-17 13:07:00 -0500365 /*
366 * Copy the raw buffer data with no transform.
367 * (NULL terminated already)
368 */
Len Brown4be44fc2005-08-05 00:44:28 -0400369 ACPI_MEMCPY(return_desc->string.pointer,
370 operand[0]->buffer.pointer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 break;
372
Robert Moore44f6c012005-04-18 22:49:35 -0400373 case AML_CONCAT_RES_OP:
374
375 /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Len Brown4be44fc2005-08-05 00:44:28 -0400377 status = acpi_ex_concat_template(operand[0], operand[1],
378 &return_desc, walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 break;
380
Len Brown4be44fc2005-08-05 00:44:28 -0400381 case AML_INDEX_OP: /* Index (Source Index Result) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* Create the internal return object */
384
Len Brown4be44fc2005-08-05 00:44:28 -0400385 return_desc =
386 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!return_desc) {
388 status = AE_NO_MEMORY;
389 goto cleanup;
390 }
391
Bob Moore52fc0b02006-10-02 00:00:00 -0400392 /* Initialize the Index reference object */
393
Robert Moore44f6c012005-04-18 22:49:35 -0400394 index = operand[1]->integer.value;
Bob Moore1044f1f2008-09-27 11:08:41 +0800395 return_desc->reference.value = (u32) index;
396 return_desc->reference.class = ACPI_REFCLASS_INDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Bob Moore52fc0b02006-10-02 00:00:00 -0400398 /*
399 * At this point, the Source operand is a String, Buffer, or Package.
400 * Verify that the index is within range.
401 */
Bob Moore3371c192009-02-18 14:44:03 +0800402 switch ((operand[0])->common.type) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400403 case ACPI_TYPE_STRING:
Robert Moore44f6c012005-04-18 22:49:35 -0400404
Bob Moore52fc0b02006-10-02 00:00:00 -0400405 if (index >= operand[0]->string.length) {
406 status = AE_AML_STRING_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
Len Brown4be44fc2005-08-05 00:44:28 -0400409 return_desc->reference.target_type =
410 ACPI_TYPE_BUFFER_FIELD;
Bob Moore52fc0b02006-10-02 00:00:00 -0400411 break;
412
413 case ACPI_TYPE_BUFFER:
414
415 if (index >= operand[0]->buffer.length) {
416 status = AE_AML_BUFFER_LIMIT;
417 }
418
419 return_desc->reference.target_type =
420 ACPI_TYPE_BUFFER_FIELD;
421 break;
422
423 case ACPI_TYPE_PACKAGE:
424
425 if (index >= operand[0]->package.count) {
426 status = AE_AML_PACKAGE_LIMIT;
427 }
428
429 return_desc->reference.target_type = ACPI_TYPE_PACKAGE;
430 return_desc->reference.where =
431 &operand[0]->package.elements[index];
432 break;
433
434 default:
435
436 status = AE_AML_INTERNAL;
437 goto cleanup;
438 }
439
440 /* Failure means that the Index was beyond the end of the object */
441
442 if (ACPI_FAILURE(status)) {
443 ACPI_EXCEPTION((AE_INFO, status,
444 "Index (%X%8.8X) is beyond end of object",
445 ACPI_FORMAT_UINT64(index)));
446 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 /*
Bob Moore83135242006-10-03 00:00:00 -0400450 * Save the target object and add a reference to it for the life
Bob Moore52fc0b02006-10-02 00:00:00 -0400451 * of the index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
Bob Moore83135242006-10-03 00:00:00 -0400453 return_desc->reference.object = operand[0];
Len Brown4be44fc2005-08-05 00:44:28 -0400454 acpi_ut_add_reference(operand[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /* Store the reference to the Target */
457
Len Brown4be44fc2005-08-05 00:44:28 -0400458 status = acpi_ex_store(return_desc, operand[2], walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 /* Return the reference */
461
462 walk_state->result_obj = return_desc;
463 goto cleanup;
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 default:
466
Bob Mooreb8e4d892006-01-27 16:43:00 -0500467 ACPI_ERROR((AE_INFO, "Unknown AML opcode %X",
468 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 status = AE_AML_BAD_OPCODE;
470 break;
471 }
472
Len Brown4be44fc2005-08-05 00:44:28 -0400473 store_result_to_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Len Brown4be44fc2005-08-05 00:44:28 -0400475 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /*
477 * Store the result of the operation (which is now in return_desc) into
478 * the Target descriptor.
479 */
Len Brown4be44fc2005-08-05 00:44:28 -0400480 status = acpi_ex_store(return_desc, operand[2], walk_state);
481 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto cleanup;
483 }
484
485 if (!walk_state->result_obj) {
486 walk_state->result_obj = return_desc;
487 }
488 }
489
Len Brown4be44fc2005-08-05 00:44:28 -0400490 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* Delete return object on error */
493
Len Brown4be44fc2005-08-05 00:44:28 -0400494 if (ACPI_FAILURE(status)) {
495 acpi_ut_remove_reference(return_desc);
Bob Moore4b6e16c2008-04-10 19:06:37 +0400496 walk_state->result_obj = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Len Brown4be44fc2005-08-05 00:44:28 -0400499 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502/*******************************************************************************
503 *
504 * FUNCTION: acpi_ex_opcode_2A_0T_1R
505 *
506 * PARAMETERS: walk_state - Current walk state
507 *
508 * RETURN: Status
509 *
510 * DESCRIPTION: Execute opcode with 2 arguments, no target, and a return value
511 *
512 ******************************************************************************/
513
Len Brown4be44fc2005-08-05 00:44:28 -0400514acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Len Brown4be44fc2005-08-05 00:44:28 -0400516 union acpi_operand_object **operand = &walk_state->operands[0];
517 union acpi_operand_object *return_desc = NULL;
518 acpi_status status = AE_OK;
519 u8 logical_result = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Bob Mooreb229cf92006-04-21 17:15:00 -0400521 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R,
Len Brown4be44fc2005-08-05 00:44:28 -0400522 acpi_ps_get_opcode_name(walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* Create the internal return object */
525
Len Brown4be44fc2005-08-05 00:44:28 -0400526 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (!return_desc) {
528 status = AE_NO_MEMORY;
529 goto cleanup;
530 }
531
Robert Moore44f6c012005-04-18 22:49:35 -0400532 /* Execute the Opcode */
533
534 if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400535
Robert Moore44f6c012005-04-18 22:49:35 -0400536 /* logical_op (Operand0, Operand1) */
537
Len Brown4be44fc2005-08-05 00:44:28 -0400538 status = acpi_ex_do_logical_numeric_op(walk_state->opcode,
539 operand[0]->integer.
540 value,
541 operand[1]->integer.
542 value, &logical_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto store_logical_result;
Len Brown4be44fc2005-08-05 00:44:28 -0400544 } else if (walk_state->op_info->flags & AML_LOGICAL) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400545
Robert Moore44f6c012005-04-18 22:49:35 -0400546 /* logical_op (Operand0, Operand1) */
547
Len Brown4be44fc2005-08-05 00:44:28 -0400548 status = acpi_ex_do_logical_op(walk_state->opcode, operand[0],
549 operand[1], &logical_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 goto store_logical_result;
551 }
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 switch (walk_state->opcode) {
Len Brown4be44fc2005-08-05 00:44:28 -0400554 case AML_ACQUIRE_OP: /* Acquire (mutex_object, Timeout) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Len Brown4be44fc2005-08-05 00:44:28 -0400556 status =
557 acpi_ex_acquire_mutex(operand[1], operand[0], walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (status == AE_TIME) {
Len Brown4be44fc2005-08-05 00:44:28 -0400559 logical_result = TRUE; /* TRUE = Acquire timed out */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 status = AE_OK;
561 }
562 break;
563
Len Brown4be44fc2005-08-05 00:44:28 -0400564 case AML_WAIT_OP: /* Wait (event_object, Timeout) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Len Brown4be44fc2005-08-05 00:44:28 -0400566 status = acpi_ex_system_wait_event(operand[1], operand[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (status == AE_TIME) {
Len Brown4be44fc2005-08-05 00:44:28 -0400568 logical_result = TRUE; /* TRUE, Wait timed out */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 status = AE_OK;
570 }
571 break;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 default:
574
Bob Mooreb8e4d892006-01-27 16:43:00 -0500575 ACPI_ERROR((AE_INFO, "Unknown AML opcode %X",
576 walk_state->opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 status = AE_AML_BAD_OPCODE;
578 goto cleanup;
579 }
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581 store_logical_result:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /*
583 * Set return value to according to logical_result. logical TRUE (all ones)
584 * Default is FALSE (zero)
585 */
586 if (logical_result) {
587 return_desc->integer.value = ACPI_INTEGER_MAX;
588 }
589
Len Brown4be44fc2005-08-05 00:44:28 -0400590 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /* Delete return object on error */
593
Len Brown4be44fc2005-08-05 00:44:28 -0400594 if (ACPI_FAILURE(status)) {
595 acpi_ut_remove_reference(return_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
Bob Moore4b6e16c2008-04-10 19:06:37 +0400598 /* Save return object on success */
599
600 else {
601 walk_state->result_obj = return_desc;
602 }
603
Len Brown4be44fc2005-08-05 00:44:28 -0400604 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}