1 /******************************************************************************
3 * Module Name: exoparg2 - AML execution - opcodes with 2 arguments
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2005, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include <acpi/acparser.h>
46 #include <acpi/acinterp.h>
47 #include <acpi/acevents.h>
48 #include <acpi/amlcode.h>
50 #define _COMPONENT ACPI_EXECUTER
51 ACPI_MODULE_NAME("exoparg2")
54 * Naming convention for AML interpreter execution routines.
56 * The routines that begin execution of AML opcodes are named with a common
57 * convention based upon the number of arguments, the number of target operands,
58 * and whether or not a value is returned:
60 * AcpiExOpcode_xA_yT_zR
64 * xA - ARGUMENTS: The number of arguments (input operands) that are
65 * required for this opcode type (1 through 6 args).
66 * yT - TARGETS: The number of targets (output operands) that are required
67 * for this opcode type (0, 1, or 2 targets).
68 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
69 * as the function return (0 or 1).
71 * The AcpiExOpcode* functions are called via the Dispatcher component with
72 * fully resolved operands.
74 /*******************************************************************************
76 * FUNCTION: acpi_ex_opcode_2A_0T_0R
78 * PARAMETERS: walk_state - Current walk state
82 * DESCRIPTION: Execute opcode with two arguments, no target, and no return
85 * ALLOCATION: Deletes both operands
87 ******************************************************************************/
88 acpi_status
acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state
*walk_state
)
90 union acpi_operand_object
**operand
= &walk_state
->operands
[0];
91 struct acpi_namespace_node
*node
;
93 acpi_status status
= AE_OK
;
95 ACPI_FUNCTION_TRACE_STR("ex_opcode_2A_0T_0R",
96 acpi_ps_get_opcode_name(walk_state
->opcode
));
98 /* Examine the opcode */
100 switch (walk_state
->opcode
) {
101 case AML_NOTIFY_OP
: /* Notify (notify_object, notify_value) */
103 /* The first operand is a namespace node */
105 node
= (struct acpi_namespace_node
*)operand
[0];
107 /* Second value is the notify value */
109 value
= (u32
) operand
[1]->integer
.value
;
111 /* Are notifies allowed on this object? */
113 if (!acpi_ev_is_notify_object(node
)) {
114 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
115 "Unexpected notify object type [%s]\n",
116 acpi_ut_get_type_name(node
->type
)));
118 status
= AE_AML_OPERAND_TYPE
;
121 #ifdef ACPI_GPE_NOTIFY_CHECK
123 * GPE method wake/notify check. Here, we want to ensure that we
124 * don't receive any "device_wake" Notifies from a GPE _Lxx or _Exx
125 * GPE method during system runtime. If we do, the GPE is marked
126 * as "wake-only" and disabled.
128 * 1) Is the Notify() value == device_wake?
129 * 2) Is this a GPE deferred method? (An _Lxx or _Exx method)
130 * 3) Did the original GPE happen at system runtime?
131 * (versus during wake)
133 * If all three cases are true, this is a wake-only GPE that should
134 * be disabled at runtime.
136 if (value
== 2) { /* device_wake */
138 acpi_ev_check_for_wake_only_gpe(walk_state
->
140 if (ACPI_FAILURE(status
)) {
141 /* AE_WAKE_ONLY_GPE only error, means ignore this notify */
143 return_ACPI_STATUS(AE_OK
)
149 * Dispatch the notify to the appropriate handler
150 * NOTE: the request is queued for execution after this method
151 * completes. The notify handlers are NOT invoked synchronously
152 * from this thread -- because handlers may in turn run other
155 status
= acpi_ev_queue_notify_request(node
, value
);
160 ACPI_REPORT_ERROR(("acpi_ex_opcode_2A_0T_0R: Unknown opcode %X\n", walk_state
->opcode
));
161 status
= AE_AML_BAD_OPCODE
;
164 return_ACPI_STATUS(status
);
167 /*******************************************************************************
169 * FUNCTION: acpi_ex_opcode_2A_2T_1R
171 * PARAMETERS: walk_state - Current walk state
175 * DESCRIPTION: Execute a dyadic operator (2 operands) with 2 output targets
176 * and one implicit return value.
178 ******************************************************************************/
180 acpi_status
acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state
*walk_state
)
182 union acpi_operand_object
**operand
= &walk_state
->operands
[0];
183 union acpi_operand_object
*return_desc1
= NULL
;
184 union acpi_operand_object
*return_desc2
= NULL
;
187 ACPI_FUNCTION_TRACE_STR("ex_opcode_2A_2T_1R",
188 acpi_ps_get_opcode_name(walk_state
->opcode
));
190 /* Execute the opcode */
192 switch (walk_state
->opcode
) {
195 /* Divide (Dividend, Divisor, remainder_result quotient_result) */
198 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER
);
200 status
= AE_NO_MEMORY
;
205 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER
);
207 status
= AE_NO_MEMORY
;
211 /* Quotient to return_desc1, remainder to return_desc2 */
213 status
= acpi_ut_divide(operand
[0]->integer
.value
,
214 operand
[1]->integer
.value
,
215 &return_desc1
->integer
.value
,
216 &return_desc2
->integer
.value
);
217 if (ACPI_FAILURE(status
)) {
224 ACPI_REPORT_ERROR(("acpi_ex_opcode_2A_2T_1R: Unknown opcode %X\n", walk_state
->opcode
));
225 status
= AE_AML_BAD_OPCODE
;
229 /* Store the results to the target reference operands */
231 status
= acpi_ex_store(return_desc2
, operand
[2], walk_state
);
232 if (ACPI_FAILURE(status
)) {
236 status
= acpi_ex_store(return_desc1
, operand
[3], walk_state
);
237 if (ACPI_FAILURE(status
)) {
241 /* Return the remainder */
243 walk_state
->result_obj
= return_desc1
;
247 * Since the remainder is not returned indirectly, remove a reference to
248 * it. Only the quotient is returned indirectly.
250 acpi_ut_remove_reference(return_desc2
);
252 if (ACPI_FAILURE(status
)) {
253 /* Delete the return object */
255 acpi_ut_remove_reference(return_desc1
);
258 return_ACPI_STATUS(status
);
261 /*******************************************************************************
263 * FUNCTION: acpi_ex_opcode_2A_1T_1R
265 * PARAMETERS: walk_state - Current walk state
269 * DESCRIPTION: Execute opcode with two arguments, one target, and a return
272 ******************************************************************************/
274 acpi_status
acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state
*walk_state
)
276 union acpi_operand_object
**operand
= &walk_state
->operands
[0];
277 union acpi_operand_object
*return_desc
= NULL
;
279 acpi_status status
= AE_OK
;
282 ACPI_FUNCTION_TRACE_STR("ex_opcode_2A_1T_1R",
283 acpi_ps_get_opcode_name(walk_state
->opcode
));
285 /* Execute the opcode */
287 if (walk_state
->op_info
->flags
& AML_MATH
) {
288 /* All simple math opcodes (add, etc.) */
290 return_desc
= acpi_ut_create_internal_object(ACPI_TYPE_INTEGER
);
292 status
= AE_NO_MEMORY
;
296 return_desc
->integer
.value
=
297 acpi_ex_do_math_op(walk_state
->opcode
,
298 operand
[0]->integer
.value
,
299 operand
[1]->integer
.value
);
300 goto store_result_to_target
;
303 switch (walk_state
->opcode
) {
304 case AML_MOD_OP
: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */
306 return_desc
= acpi_ut_create_internal_object(ACPI_TYPE_INTEGER
);
308 status
= AE_NO_MEMORY
;
312 /* return_desc will contain the remainder */
314 status
= acpi_ut_divide(operand
[0]->integer
.value
,
315 operand
[1]->integer
.value
,
316 NULL
, &return_desc
->integer
.value
);
319 case AML_CONCAT_OP
: /* Concatenate (Data1, Data2, Result) */
321 status
= acpi_ex_do_concatenate(operand
[0], operand
[1],
322 &return_desc
, walk_state
);
325 case AML_TO_STRING_OP
: /* to_string (Buffer, Length, Result) (ACPI 2.0) */
328 * Input object is guaranteed to be a buffer at this point (it may have
329 * been converted.) Copy the raw buffer data to a new object of
334 * Get the length of the new string. It is the smallest of:
335 * 1) Length of the input buffer
336 * 2) Max length as specified in the to_string operator
337 * 3) Length of input buffer up to a zero byte (null terminator)
339 * NOTE: A length of zero is ok, and will create a zero-length, null
343 while ((length
< operand
[0]->buffer
.length
) &&
344 (length
< operand
[1]->integer
.value
) &&
345 (operand
[0]->buffer
.pointer
[length
])) {
347 if (length
> ACPI_MAX_STRING_CONVERSION
) {
348 status
= AE_AML_STRING_LIMIT
;
353 /* Allocate a new string object */
355 return_desc
= acpi_ut_create_string_object(length
);
357 status
= AE_NO_MEMORY
;
361 /* Copy the raw buffer data with no transform. NULL terminated already */
363 ACPI_MEMCPY(return_desc
->string
.pointer
,
364 operand
[0]->buffer
.pointer
, length
);
367 case AML_CONCAT_RES_OP
:
369 /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */
371 status
= acpi_ex_concat_template(operand
[0], operand
[1],
372 &return_desc
, walk_state
);
375 case AML_INDEX_OP
: /* Index (Source Index Result) */
377 /* Create the internal return object */
380 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE
);
382 status
= AE_NO_MEMORY
;
386 index
= operand
[1]->integer
.value
;
388 /* At this point, the Source operand is a Package, Buffer, or String */
390 if (ACPI_GET_OBJECT_TYPE(operand
[0]) == ACPI_TYPE_PACKAGE
) {
391 /* Object to be indexed is a Package */
393 if (index
>= operand
[0]->package
.count
) {
394 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
395 "Index value (%X%8.8X) beyond package end (%X)\n",
396 ACPI_FORMAT_UINT64(index
),
397 operand
[0]->package
.count
));
398 status
= AE_AML_PACKAGE_LIMIT
;
402 return_desc
->reference
.target_type
= ACPI_TYPE_PACKAGE
;
403 return_desc
->reference
.object
= operand
[0];
404 return_desc
->reference
.where
=
405 &operand
[0]->package
.elements
[index
];
407 /* Object to be indexed is a Buffer/String */
409 if (index
>= operand
[0]->buffer
.length
) {
410 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
411 "Index value (%X%8.8X) beyond end of buffer (%X)\n",
412 ACPI_FORMAT_UINT64(index
),
413 operand
[0]->buffer
.length
));
414 status
= AE_AML_BUFFER_LIMIT
;
418 return_desc
->reference
.target_type
=
419 ACPI_TYPE_BUFFER_FIELD
;
420 return_desc
->reference
.object
= operand
[0];
424 * Add a reference to the target package/buffer/string for the life
427 acpi_ut_add_reference(operand
[0]);
429 /* Complete the Index reference object */
431 return_desc
->reference
.opcode
= AML_INDEX_OP
;
432 return_desc
->reference
.offset
= (u32
) index
;
434 /* Store the reference to the Target */
436 status
= acpi_ex_store(return_desc
, operand
[2], walk_state
);
438 /* Return the reference */
440 walk_state
->result_obj
= return_desc
;
445 ACPI_REPORT_ERROR(("acpi_ex_opcode_2A_1T_1R: Unknown opcode %X\n", walk_state
->opcode
));
446 status
= AE_AML_BAD_OPCODE
;
450 store_result_to_target
:
452 if (ACPI_SUCCESS(status
)) {
454 * Store the result of the operation (which is now in return_desc) into
455 * the Target descriptor.
457 status
= acpi_ex_store(return_desc
, operand
[2], walk_state
);
458 if (ACPI_FAILURE(status
)) {
462 if (!walk_state
->result_obj
) {
463 walk_state
->result_obj
= return_desc
;
469 /* Delete return object on error */
471 if (ACPI_FAILURE(status
)) {
472 acpi_ut_remove_reference(return_desc
);
475 return_ACPI_STATUS(status
);
478 /*******************************************************************************
480 * FUNCTION: acpi_ex_opcode_2A_0T_1R
482 * PARAMETERS: walk_state - Current walk state
486 * DESCRIPTION: Execute opcode with 2 arguments, no target, and a return value
488 ******************************************************************************/
490 acpi_status
acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state
*walk_state
)
492 union acpi_operand_object
**operand
= &walk_state
->operands
[0];
493 union acpi_operand_object
*return_desc
= NULL
;
494 acpi_status status
= AE_OK
;
495 u8 logical_result
= FALSE
;
497 ACPI_FUNCTION_TRACE_STR("ex_opcode_2A_0T_1R",
498 acpi_ps_get_opcode_name(walk_state
->opcode
));
500 /* Create the internal return object */
502 return_desc
= acpi_ut_create_internal_object(ACPI_TYPE_INTEGER
);
504 status
= AE_NO_MEMORY
;
508 /* Execute the Opcode */
510 if (walk_state
->op_info
->flags
& AML_LOGICAL_NUMERIC
) {
511 /* logical_op (Operand0, Operand1) */
513 status
= acpi_ex_do_logical_numeric_op(walk_state
->opcode
,
517 value
, &logical_result
);
518 goto store_logical_result
;
519 } else if (walk_state
->op_info
->flags
& AML_LOGICAL
) {
520 /* logical_op (Operand0, Operand1) */
522 status
= acpi_ex_do_logical_op(walk_state
->opcode
, operand
[0],
523 operand
[1], &logical_result
);
524 goto store_logical_result
;
527 switch (walk_state
->opcode
) {
528 case AML_ACQUIRE_OP
: /* Acquire (mutex_object, Timeout) */
531 acpi_ex_acquire_mutex(operand
[1], operand
[0], walk_state
);
532 if (status
== AE_TIME
) {
533 logical_result
= TRUE
; /* TRUE = Acquire timed out */
538 case AML_WAIT_OP
: /* Wait (event_object, Timeout) */
540 status
= acpi_ex_system_wait_event(operand
[1], operand
[0]);
541 if (status
== AE_TIME
) {
542 logical_result
= TRUE
; /* TRUE, Wait timed out */
549 ACPI_REPORT_ERROR(("acpi_ex_opcode_2A_0T_1R: Unknown opcode %X\n", walk_state
->opcode
));
550 status
= AE_AML_BAD_OPCODE
;
554 store_logical_result
:
556 * Set return value to according to logical_result. logical TRUE (all ones)
557 * Default is FALSE (zero)
559 if (logical_result
) {
560 return_desc
->integer
.value
= ACPI_INTEGER_MAX
;
563 walk_state
->result_obj
= return_desc
;
567 /* Delete return object on error */
569 if (ACPI_FAILURE(status
)) {
570 acpi_ut_remove_reference(return_desc
);
573 return_ACPI_STATUS(status
);