]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /****************************************************************************** |
2 | * | |
3 | * Module Name: exoparg2 - AML execution - opcodes with 2 arguments | |
4 | * | |
5 | *****************************************************************************/ | |
6 | ||
7 | /* | |
77848130 | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
1da177e4 LT |
9 | * 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 | ||
1da177e4 | 44 | #include <acpi/acpi.h> |
e2f7a777 LB |
45 | #include "accommon.h" |
46 | #include "acparser.h" | |
47 | #include "acinterp.h" | |
48 | #include "acevents.h" | |
49 | #include "amlcode.h" | |
1da177e4 | 50 | |
1da177e4 | 51 | #define _COMPONENT ACPI_EXECUTER |
4be44fcd | 52 | ACPI_MODULE_NAME("exoparg2") |
1da177e4 LT |
53 | |
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 | !*/ | |
1da177e4 LT |
75 | /******************************************************************************* |
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 | ******************************************************************************/ | |
4be44fcd | 89 | acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state) |
1da177e4 | 90 | { |
4be44fcd LB |
91 | union acpi_operand_object **operand = &walk_state->operands[0]; |
92 | struct acpi_namespace_node *node; | |
93 | u32 value; | |
94 | acpi_status status = AE_OK; | |
1da177e4 | 95 | |
b229cf92 | 96 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_0R, |
4be44fcd | 97 | acpi_ps_get_opcode_name(walk_state->opcode)); |
1da177e4 LT |
98 | |
99 | /* Examine the opcode */ | |
100 | ||
101 | switch (walk_state->opcode) { | |
4be44fcd | 102 | case AML_NOTIFY_OP: /* Notify (notify_object, notify_value) */ |
1da177e4 LT |
103 | |
104 | /* The first operand is a namespace node */ | |
105 | ||
4be44fcd | 106 | node = (struct acpi_namespace_node *)operand[0]; |
1da177e4 LT |
107 | |
108 | /* Second value is the notify value */ | |
109 | ||
110 | value = (u32) operand[1]->integer.value; | |
111 | ||
44f6c012 | 112 | /* Are notifies allowed on this object? */ |
1da177e4 | 113 | |
4be44fcd | 114 | if (!acpi_ev_is_notify_object(node)) { |
b8e4d893 BM |
115 | ACPI_ERROR((AE_INFO, |
116 | "Unexpected notify object type [%s]", | |
117 | acpi_ut_get_type_name(node->type))); | |
1da177e4 LT |
118 | |
119 | status = AE_AML_OPERAND_TYPE; | |
120 | break; | |
121 | } | |
1da177e4 LT |
122 | |
123 | /* | |
124 | * Dispatch the notify to the appropriate handler | |
125 | * NOTE: the request is queued for execution after this method | |
73a3090a | 126 | * completes. The notify handlers are NOT invoked synchronously |
1da177e4 LT |
127 | * from this thread -- because handlers may in turn run other |
128 | * control methods. | |
129 | */ | |
4be44fcd | 130 | status = acpi_ev_queue_notify_request(node, value); |
1da177e4 LT |
131 | break; |
132 | ||
1da177e4 LT |
133 | default: |
134 | ||
f6a22b0b | 135 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
b8e4d893 | 136 | walk_state->opcode)); |
1da177e4 LT |
137 | status = AE_AML_BAD_OPCODE; |
138 | } | |
139 | ||
4be44fcd | 140 | return_ACPI_STATUS(status); |
1da177e4 LT |
141 | } |
142 | ||
1da177e4 LT |
143 | /******************************************************************************* |
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 | ||
4be44fcd | 156 | acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state) |
1da177e4 | 157 | { |
4be44fcd LB |
158 | 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; | |
1da177e4 | 162 | |
b229cf92 | 163 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R, |
4be44fcd | 164 | acpi_ps_get_opcode_name(walk_state->opcode)); |
1da177e4 | 165 | |
44f6c012 RM |
166 | /* Execute the opcode */ |
167 | ||
1da177e4 | 168 | switch (walk_state->opcode) { |
44f6c012 RM |
169 | case AML_DIVIDE_OP: |
170 | ||
171 | /* Divide (Dividend, Divisor, remainder_result quotient_result) */ | |
1da177e4 | 172 | |
4be44fcd LB |
173 | return_desc1 = |
174 | acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); | |
1da177e4 LT |
175 | if (!return_desc1) { |
176 | status = AE_NO_MEMORY; | |
177 | goto cleanup; | |
178 | } | |
179 | ||
4be44fcd LB |
180 | return_desc2 = |
181 | acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); | |
1da177e4 LT |
182 | if (!return_desc2) { |
183 | status = AE_NO_MEMORY; | |
184 | goto cleanup; | |
185 | } | |
186 | ||
187 | /* Quotient to return_desc1, remainder to return_desc2 */ | |
188 | ||
4be44fcd LB |
189 | 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)) { | |
1da177e4 LT |
194 | goto cleanup; |
195 | } | |
196 | break; | |
197 | ||
1da177e4 LT |
198 | default: |
199 | ||
f6a22b0b | 200 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
b8e4d893 | 201 | walk_state->opcode)); |
1da177e4 LT |
202 | status = AE_AML_BAD_OPCODE; |
203 | goto cleanup; | |
204 | } | |
205 | ||
1da177e4 LT |
206 | /* Store the results to the target reference operands */ |
207 | ||
4be44fcd LB |
208 | status = acpi_ex_store(return_desc2, operand[2], walk_state); |
209 | if (ACPI_FAILURE(status)) { | |
1da177e4 LT |
210 | goto cleanup; |
211 | } | |
212 | ||
4be44fcd LB |
213 | status = acpi_ex_store(return_desc1, operand[3], walk_state); |
214 | if (ACPI_FAILURE(status)) { | |
1da177e4 LT |
215 | goto cleanup; |
216 | } | |
217 | ||
4be44fcd | 218 | cleanup: |
1da177e4 LT |
219 | /* |
220 | * Since the remainder is not returned indirectly, remove a reference to | |
221 | * it. Only the quotient is returned indirectly. | |
222 | */ | |
4be44fcd | 223 | acpi_ut_remove_reference(return_desc2); |
1da177e4 | 224 | |
4be44fcd | 225 | if (ACPI_FAILURE(status)) { |
52fc0b02 | 226 | |
1da177e4 LT |
227 | /* Delete the return object */ |
228 | ||
4be44fcd | 229 | acpi_ut_remove_reference(return_desc1); |
1da177e4 LT |
230 | } |
231 | ||
4b6e16cf BM |
232 | /* Save return object (the remainder) on success */ |
233 | ||
234 | else { | |
235 | walk_state->result_obj = return_desc1; | |
236 | } | |
237 | ||
4be44fcd | 238 | return_ACPI_STATUS(status); |
1da177e4 LT |
239 | } |
240 | ||
1da177e4 LT |
241 | /******************************************************************************* |
242 | * | |
243 | * FUNCTION: acpi_ex_opcode_2A_1T_1R | |
244 | * | |
245 | * PARAMETERS: walk_state - Current walk state | |
246 | * | |
247 | * RETURN: Status | |
248 | * | |
249 | * DESCRIPTION: Execute opcode with two arguments, one target, and a return | |
250 | * value. | |
251 | * | |
252 | ******************************************************************************/ | |
253 | ||
4be44fcd | 254 | acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state) |
1da177e4 | 255 | { |
4be44fcd LB |
256 | union acpi_operand_object **operand = &walk_state->operands[0]; |
257 | union acpi_operand_object *return_desc = NULL; | |
5df7e6cb | 258 | u64 index; |
4be44fcd LB |
259 | acpi_status status = AE_OK; |
260 | acpi_size length; | |
1da177e4 | 261 | |
b229cf92 | 262 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R, |
4be44fcd | 263 | acpi_ps_get_opcode_name(walk_state->opcode)); |
1da177e4 | 264 | |
44f6c012 RM |
265 | /* Execute the opcode */ |
266 | ||
1da177e4 | 267 | if (walk_state->op_info->flags & AML_MATH) { |
52fc0b02 | 268 | |
1da177e4 LT |
269 | /* All simple math opcodes (add, etc.) */ |
270 | ||
4be44fcd | 271 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
1da177e4 LT |
272 | if (!return_desc) { |
273 | status = AE_NO_MEMORY; | |
274 | goto cleanup; | |
275 | } | |
276 | ||
4be44fcd LB |
277 | return_desc->integer.value = |
278 | acpi_ex_do_math_op(walk_state->opcode, | |
279 | operand[0]->integer.value, | |
280 | operand[1]->integer.value); | |
1da177e4 LT |
281 | goto store_result_to_target; |
282 | } | |
283 | ||
1da177e4 | 284 | switch (walk_state->opcode) { |
4be44fcd | 285 | case AML_MOD_OP: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */ |
1da177e4 | 286 | |
4be44fcd | 287 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
1da177e4 LT |
288 | if (!return_desc) { |
289 | status = AE_NO_MEMORY; | |
290 | goto cleanup; | |
291 | } | |
292 | ||
293 | /* return_desc will contain the remainder */ | |
294 | ||
4be44fcd LB |
295 | status = acpi_ut_divide(operand[0]->integer.value, |
296 | operand[1]->integer.value, | |
297 | NULL, &return_desc->integer.value); | |
1da177e4 LT |
298 | break; |
299 | ||
4be44fcd | 300 | case AML_CONCAT_OP: /* Concatenate (Data1, Data2, Result) */ |
1da177e4 | 301 | |
4be44fcd LB |
302 | status = acpi_ex_do_concatenate(operand[0], operand[1], |
303 | &return_desc, walk_state); | |
1da177e4 LT |
304 | break; |
305 | ||
4be44fcd | 306 | case AML_TO_STRING_OP: /* to_string (Buffer, Length, Result) (ACPI 2.0) */ |
1da177e4 LT |
307 | |
308 | /* | |
309 | * Input object is guaranteed to be a buffer at this point (it may have | |
44f6c012 RM |
310 | * been converted.) Copy the raw buffer data to a new object of |
311 | * type String. | |
1da177e4 LT |
312 | */ |
313 | ||
314 | /* | |
315 | * Get the length of the new string. It is the smallest of: | |
316 | * 1) Length of the input buffer | |
317 | * 2) Max length as specified in the to_string operator | |
318 | * 3) Length of input buffer up to a zero byte (null terminator) | |
319 | * | |
320 | * NOTE: A length of zero is ok, and will create a zero-length, null | |
321 | * terminated string. | |
322 | */ | |
323 | length = 0; | |
324 | while ((length < operand[0]->buffer.length) && | |
4be44fcd LB |
325 | (length < operand[1]->integer.value) && |
326 | (operand[0]->buffer.pointer[length])) { | |
1da177e4 | 327 | length++; |
1da177e4 LT |
328 | } |
329 | ||
330 | /* Allocate a new string object */ | |
331 | ||
4be44fcd | 332 | return_desc = acpi_ut_create_string_object(length); |
1da177e4 LT |
333 | if (!return_desc) { |
334 | status = AE_NO_MEMORY; | |
335 | goto cleanup; | |
336 | } | |
337 | ||
c51a4de8 BM |
338 | /* |
339 | * Copy the raw buffer data with no transform. | |
340 | * (NULL terminated already) | |
341 | */ | |
4be44fcd LB |
342 | ACPI_MEMCPY(return_desc->string.pointer, |
343 | operand[0]->buffer.pointer, length); | |
1da177e4 LT |
344 | break; |
345 | ||
44f6c012 RM |
346 | case AML_CONCAT_RES_OP: |
347 | ||
348 | /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */ | |
1da177e4 | 349 | |
4be44fcd LB |
350 | status = acpi_ex_concat_template(operand[0], operand[1], |
351 | &return_desc, walk_state); | |
1da177e4 LT |
352 | break; |
353 | ||
4be44fcd | 354 | case AML_INDEX_OP: /* Index (Source Index Result) */ |
1da177e4 LT |
355 | |
356 | /* Create the internal return object */ | |
357 | ||
4be44fcd LB |
358 | return_desc = |
359 | acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE); | |
1da177e4 LT |
360 | if (!return_desc) { |
361 | status = AE_NO_MEMORY; | |
362 | goto cleanup; | |
363 | } | |
364 | ||
52fc0b02 BM |
365 | /* Initialize the Index reference object */ |
366 | ||
44f6c012 | 367 | index = operand[1]->integer.value; |
1044f1f6 BM |
368 | return_desc->reference.value = (u32) index; |
369 | return_desc->reference.class = ACPI_REFCLASS_INDEX; | |
44f6c012 | 370 | |
52fc0b02 BM |
371 | /* |
372 | * At this point, the Source operand is a String, Buffer, or Package. | |
373 | * Verify that the index is within range. | |
374 | */ | |
3371c19c | 375 | switch ((operand[0])->common.type) { |
52fc0b02 | 376 | case ACPI_TYPE_STRING: |
1da177e4 | 377 | |
52fc0b02 BM |
378 | if (index >= operand[0]->string.length) { |
379 | status = AE_AML_STRING_LIMIT; | |
380 | } | |
381 | ||
382 | return_desc->reference.target_type = | |
383 | ACPI_TYPE_BUFFER_FIELD; | |
384 | break; | |
385 | ||
386 | case ACPI_TYPE_BUFFER: | |
387 | ||
388 | if (index >= operand[0]->buffer.length) { | |
389 | status = AE_AML_BUFFER_LIMIT; | |
390 | } | |
391 | ||
392 | return_desc->reference.target_type = | |
393 | ACPI_TYPE_BUFFER_FIELD; | |
394 | break; | |
395 | ||
396 | case ACPI_TYPE_PACKAGE: | |
1da177e4 LT |
397 | |
398 | if (index >= operand[0]->package.count) { | |
1da177e4 | 399 | status = AE_AML_PACKAGE_LIMIT; |
1da177e4 LT |
400 | } |
401 | ||
402 | return_desc->reference.target_type = ACPI_TYPE_PACKAGE; | |
4be44fcd LB |
403 | return_desc->reference.where = |
404 | &operand[0]->package.elements[index]; | |
52fc0b02 | 405 | break; |
1da177e4 | 406 | |
52fc0b02 | 407 | default: |
1da177e4 | 408 | |
52fc0b02 BM |
409 | status = AE_AML_INTERNAL; |
410 | goto cleanup; | |
411 | } | |
412 | ||
413 | /* Failure means that the Index was beyond the end of the object */ | |
414 | ||
415 | if (ACPI_FAILURE(status)) { | |
416 | ACPI_EXCEPTION((AE_INFO, status, | |
f6a22b0b | 417 | "Index (0x%8.8X%8.8X) is beyond end of object", |
52fc0b02 BM |
418 | ACPI_FORMAT_UINT64(index))); |
419 | goto cleanup; | |
1da177e4 LT |
420 | } |
421 | ||
422 | /* | |
8313524a | 423 | * Save the target object and add a reference to it for the life |
52fc0b02 | 424 | * of the index |
1da177e4 | 425 | */ |
8313524a | 426 | return_desc->reference.object = operand[0]; |
4be44fcd | 427 | acpi_ut_add_reference(operand[0]); |
1da177e4 | 428 | |
1da177e4 LT |
429 | /* Store the reference to the Target */ |
430 | ||
4be44fcd | 431 | status = acpi_ex_store(return_desc, operand[2], walk_state); |
1da177e4 LT |
432 | |
433 | /* Return the reference */ | |
434 | ||
435 | walk_state->result_obj = return_desc; | |
436 | goto cleanup; | |
437 | ||
1da177e4 LT |
438 | default: |
439 | ||
f6a22b0b | 440 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
b8e4d893 | 441 | walk_state->opcode)); |
1da177e4 LT |
442 | status = AE_AML_BAD_OPCODE; |
443 | break; | |
444 | } | |
445 | ||
4be44fcd | 446 | store_result_to_target: |
1da177e4 | 447 | |
4be44fcd | 448 | if (ACPI_SUCCESS(status)) { |
1da177e4 LT |
449 | /* |
450 | * Store the result of the operation (which is now in return_desc) into | |
451 | * the Target descriptor. | |
452 | */ | |
4be44fcd LB |
453 | status = acpi_ex_store(return_desc, operand[2], walk_state); |
454 | if (ACPI_FAILURE(status)) { | |
1da177e4 LT |
455 | goto cleanup; |
456 | } | |
457 | ||
458 | if (!walk_state->result_obj) { | |
459 | walk_state->result_obj = return_desc; | |
460 | } | |
461 | } | |
462 | ||
4be44fcd | 463 | cleanup: |
1da177e4 LT |
464 | |
465 | /* Delete return object on error */ | |
466 | ||
4be44fcd LB |
467 | if (ACPI_FAILURE(status)) { |
468 | acpi_ut_remove_reference(return_desc); | |
4b6e16cf | 469 | walk_state->result_obj = NULL; |
1da177e4 LT |
470 | } |
471 | ||
4be44fcd | 472 | return_ACPI_STATUS(status); |
1da177e4 LT |
473 | } |
474 | ||
1da177e4 LT |
475 | /******************************************************************************* |
476 | * | |
477 | * FUNCTION: acpi_ex_opcode_2A_0T_1R | |
478 | * | |
479 | * PARAMETERS: walk_state - Current walk state | |
480 | * | |
481 | * RETURN: Status | |
482 | * | |
483 | * DESCRIPTION: Execute opcode with 2 arguments, no target, and a return value | |
484 | * | |
485 | ******************************************************************************/ | |
486 | ||
4be44fcd | 487 | acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state) |
1da177e4 | 488 | { |
4be44fcd LB |
489 | union acpi_operand_object **operand = &walk_state->operands[0]; |
490 | union acpi_operand_object *return_desc = NULL; | |
491 | acpi_status status = AE_OK; | |
492 | u8 logical_result = FALSE; | |
1da177e4 | 493 | |
b229cf92 | 494 | ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R, |
4be44fcd | 495 | acpi_ps_get_opcode_name(walk_state->opcode)); |
1da177e4 LT |
496 | |
497 | /* Create the internal return object */ | |
498 | ||
4be44fcd | 499 | return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); |
1da177e4 LT |
500 | if (!return_desc) { |
501 | status = AE_NO_MEMORY; | |
502 | goto cleanup; | |
503 | } | |
504 | ||
44f6c012 RM |
505 | /* Execute the Opcode */ |
506 | ||
507 | if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) { | |
52fc0b02 | 508 | |
44f6c012 RM |
509 | /* logical_op (Operand0, Operand1) */ |
510 | ||
4be44fcd LB |
511 | status = acpi_ex_do_logical_numeric_op(walk_state->opcode, |
512 | operand[0]->integer. | |
513 | value, | |
514 | operand[1]->integer. | |
515 | value, &logical_result); | |
1da177e4 | 516 | goto store_logical_result; |
4be44fcd | 517 | } else if (walk_state->op_info->flags & AML_LOGICAL) { |
52fc0b02 | 518 | |
44f6c012 RM |
519 | /* logical_op (Operand0, Operand1) */ |
520 | ||
4be44fcd LB |
521 | status = acpi_ex_do_logical_op(walk_state->opcode, operand[0], |
522 | operand[1], &logical_result); | |
1da177e4 LT |
523 | goto store_logical_result; |
524 | } | |
525 | ||
1da177e4 | 526 | switch (walk_state->opcode) { |
4be44fcd | 527 | case AML_ACQUIRE_OP: /* Acquire (mutex_object, Timeout) */ |
1da177e4 | 528 | |
4be44fcd LB |
529 | status = |
530 | acpi_ex_acquire_mutex(operand[1], operand[0], walk_state); | |
1da177e4 | 531 | if (status == AE_TIME) { |
4be44fcd | 532 | logical_result = TRUE; /* TRUE = Acquire timed out */ |
1da177e4 LT |
533 | status = AE_OK; |
534 | } | |
535 | break; | |
536 | ||
4be44fcd | 537 | case AML_WAIT_OP: /* Wait (event_object, Timeout) */ |
1da177e4 | 538 | |
4be44fcd | 539 | status = acpi_ex_system_wait_event(operand[1], operand[0]); |
1da177e4 | 540 | if (status == AE_TIME) { |
4be44fcd | 541 | logical_result = TRUE; /* TRUE, Wait timed out */ |
1da177e4 LT |
542 | status = AE_OK; |
543 | } | |
544 | break; | |
545 | ||
1da177e4 LT |
546 | default: |
547 | ||
f6a22b0b | 548 | ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", |
b8e4d893 | 549 | walk_state->opcode)); |
1da177e4 LT |
550 | status = AE_AML_BAD_OPCODE; |
551 | goto cleanup; | |
552 | } | |
553 | ||
4be44fcd | 554 | store_logical_result: |
1da177e4 LT |
555 | /* |
556 | * Set return value to according to logical_result. logical TRUE (all ones) | |
557 | * Default is FALSE (zero) | |
558 | */ | |
559 | if (logical_result) { | |
5df7e6cb | 560 | return_desc->integer.value = ACPI_UINT64_MAX; |
1da177e4 LT |
561 | } |
562 | ||
4be44fcd | 563 | cleanup: |
1da177e4 LT |
564 | |
565 | /* Delete return object on error */ | |
566 | ||
4be44fcd LB |
567 | if (ACPI_FAILURE(status)) { |
568 | acpi_ut_remove_reference(return_desc); | |
1da177e4 LT |
569 | } |
570 | ||
4b6e16cf BM |
571 | /* Save return object on success */ |
572 | ||
573 | else { | |
574 | walk_state->result_obj = return_desc; | |
575 | } | |
576 | ||
4be44fcd | 577 | return_ACPI_STATUS(status); |
1da177e4 | 578 | } |