WIP FPC-III support
[linux/fpc-iii.git] / drivers / acpi / acpica / exoparg2.c
blob03241d18ac1d77b56c0823d815251be16044e83f
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: exoparg2 - AML execution - opcodes with 2 arguments
6 * Copyright (C) 2000 - 2020, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
11 #include "accommon.h"
12 #include "acparser.h"
13 #include "acinterp.h"
14 #include "acevents.h"
15 #include "amlcode.h"
17 #define _COMPONENT ACPI_EXECUTER
18 ACPI_MODULE_NAME("exoparg2")
20 /*!
21 * Naming convention for AML interpreter execution routines.
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:
27 * AcpiExOpcode_xA_yT_zR
29 * Where:
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).
38 * The AcpiExOpcode* functions are called via the Dispatcher component with
39 * fully resolved operands.
40 !*/
41 /*******************************************************************************
43 * FUNCTION: acpi_ex_opcode_2A_0T_0R
45 * PARAMETERS: walk_state - Current walk state
47 * RETURN: Status
49 * DESCRIPTION: Execute opcode with two arguments, no target, and no return
50 * value.
52 * ALLOCATION: Deletes both operands
54 ******************************************************************************/
55 acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state)
57 union acpi_operand_object **operand = &walk_state->operands[0];
58 struct acpi_namespace_node *node;
59 u32 value;
60 acpi_status status = AE_OK;
62 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_0R,
63 acpi_ps_get_opcode_name(walk_state->opcode));
65 /* Examine the opcode */
67 switch (walk_state->opcode) {
68 case AML_NOTIFY_OP: /* Notify (notify_object, notify_value) */
70 /* The first operand is a namespace node */
72 node = (struct acpi_namespace_node *)operand[0];
74 /* Second value is the notify value */
76 value = (u32) operand[1]->integer.value;
78 /* Are notifies allowed on this object? */
80 if (!acpi_ev_is_notify_object(node)) {
81 ACPI_ERROR((AE_INFO,
82 "Unexpected notify object type [%s]",
83 acpi_ut_get_type_name(node->type)));
85 status = AE_AML_OPERAND_TYPE;
86 break;
90 * Dispatch the notify to the appropriate handler
91 * NOTE: the request is queued for execution after this method
92 * completes. The notify handlers are NOT invoked synchronously
93 * from this thread -- because handlers may in turn run other
94 * control methods.
96 status = acpi_ev_queue_notify_request(node, value);
97 break;
99 default:
101 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
102 walk_state->opcode));
103 status = AE_AML_BAD_OPCODE;
106 return_ACPI_STATUS(status);
109 /*******************************************************************************
111 * FUNCTION: acpi_ex_opcode_2A_2T_1R
113 * PARAMETERS: walk_state - Current walk state
115 * RETURN: Status
117 * DESCRIPTION: Execute a dyadic operator (2 operands) with 2 output targets
118 * and one implicit return value.
120 ******************************************************************************/
122 acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state)
124 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;
129 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_2T_1R,
130 acpi_ps_get_opcode_name(walk_state->opcode));
132 /* Execute the opcode */
134 switch (walk_state->opcode) {
135 case AML_DIVIDE_OP:
137 /* Divide (Dividend, Divisor, remainder_result quotient_result) */
139 return_desc1 =
140 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
141 if (!return_desc1) {
142 status = AE_NO_MEMORY;
143 goto cleanup;
146 return_desc2 =
147 acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
148 if (!return_desc2) {
149 status = AE_NO_MEMORY;
150 goto cleanup;
153 /* Quotient to return_desc1, remainder to return_desc2 */
155 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)) {
160 goto cleanup;
162 break;
164 default:
166 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
167 walk_state->opcode));
169 status = AE_AML_BAD_OPCODE;
170 goto cleanup;
173 /* Store the results to the target reference operands */
175 status = acpi_ex_store(return_desc2, operand[2], walk_state);
176 if (ACPI_FAILURE(status)) {
177 goto cleanup;
180 status = acpi_ex_store(return_desc1, operand[3], walk_state);
181 if (ACPI_FAILURE(status)) {
182 goto cleanup;
185 cleanup:
187 * Since the remainder is not returned indirectly, remove a reference to
188 * it. Only the quotient is returned indirectly.
190 acpi_ut_remove_reference(return_desc2);
192 if (ACPI_FAILURE(status)) {
194 /* Delete the return object */
196 acpi_ut_remove_reference(return_desc1);
199 /* Save return object (the remainder) on success */
201 else {
202 walk_state->result_obj = return_desc1;
205 return_ACPI_STATUS(status);
208 /*******************************************************************************
210 * FUNCTION: acpi_ex_opcode_2A_1T_1R
212 * PARAMETERS: walk_state - Current walk state
214 * RETURN: Status
216 * DESCRIPTION: Execute opcode with two arguments, one target, and a return
217 * value.
219 ******************************************************************************/
221 acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
223 union acpi_operand_object **operand = &walk_state->operands[0];
224 union acpi_operand_object *return_desc = NULL;
225 u64 index;
226 acpi_status status = AE_OK;
227 acpi_size length = 0;
229 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_1T_1R,
230 acpi_ps_get_opcode_name(walk_state->opcode));
232 /* Execute the opcode */
234 if (walk_state->op_info->flags & AML_MATH) {
236 /* All simple math opcodes (add, etc.) */
238 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
239 if (!return_desc) {
240 status = AE_NO_MEMORY;
241 goto cleanup;
244 return_desc->integer.value =
245 acpi_ex_do_math_op(walk_state->opcode,
246 operand[0]->integer.value,
247 operand[1]->integer.value);
248 goto store_result_to_target;
251 switch (walk_state->opcode) {
252 case AML_MOD_OP: /* Mod (Dividend, Divisor, remainder_result (ACPI 2.0) */
254 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
255 if (!return_desc) {
256 status = AE_NO_MEMORY;
257 goto cleanup;
260 /* return_desc will contain the remainder */
262 status = acpi_ut_divide(operand[0]->integer.value,
263 operand[1]->integer.value,
264 NULL, &return_desc->integer.value);
265 break;
267 case AML_CONCATENATE_OP: /* Concatenate (Data1, Data2, Result) */
269 status =
270 acpi_ex_do_concatenate(operand[0], operand[1], &return_desc,
271 walk_state);
272 break;
274 case AML_TO_STRING_OP: /* to_string (Buffer, Length, Result) (ACPI 2.0) */
276 * Input object is guaranteed to be a buffer at this point (it may have
277 * been converted.) Copy the raw buffer data to a new object of
278 * type String.
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)
287 * NOTE: A length of zero is ok, and will create a zero-length, null
288 * terminated string.
290 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 */
293 length++;
296 /* Allocate a new string object */
298 return_desc = acpi_ut_create_string_object(length);
299 if (!return_desc) {
300 status = AE_NO_MEMORY;
301 goto cleanup;
305 * Copy the raw buffer data with no transform.
306 * (NULL terminated already)
308 memcpy(return_desc->string.pointer,
309 operand[0]->buffer.pointer, length);
310 break;
312 case AML_CONCATENATE_TEMPLATE_OP:
314 /* concatenate_res_template (Buffer, Buffer, Result) (ACPI 2.0) */
316 status =
317 acpi_ex_concat_template(operand[0], operand[1],
318 &return_desc, walk_state);
319 break;
321 case AML_INDEX_OP: /* Index (Source Index Result) */
323 /* Create the internal return object */
325 return_desc =
326 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE);
327 if (!return_desc) {
328 status = AE_NO_MEMORY;
329 goto cleanup;
332 /* Initialize the Index reference object */
334 index = operand[1]->integer.value;
335 return_desc->reference.value = (u32) index;
336 return_desc->reference.class = ACPI_REFCLASS_INDEX;
339 * At this point, the Source operand is a String, Buffer, or Package.
340 * Verify that the index is within range.
342 switch ((operand[0])->common.type) {
343 case ACPI_TYPE_STRING:
345 if (index >= operand[0]->string.length) {
346 length = operand[0]->string.length;
347 status = AE_AML_STRING_LIMIT;
350 return_desc->reference.target_type =
351 ACPI_TYPE_BUFFER_FIELD;
352 return_desc->reference.index_pointer =
353 &(operand[0]->buffer.pointer[index]);
354 break;
356 case ACPI_TYPE_BUFFER:
358 if (index >= operand[0]->buffer.length) {
359 length = operand[0]->buffer.length;
360 status = AE_AML_BUFFER_LIMIT;
363 return_desc->reference.target_type =
364 ACPI_TYPE_BUFFER_FIELD;
365 return_desc->reference.index_pointer =
366 &(operand[0]->buffer.pointer[index]);
367 break;
369 case ACPI_TYPE_PACKAGE:
371 if (index >= operand[0]->package.count) {
372 length = operand[0]->package.count;
373 status = AE_AML_PACKAGE_LIMIT;
376 return_desc->reference.target_type = ACPI_TYPE_PACKAGE;
377 return_desc->reference.where =
378 &operand[0]->package.elements[index];
379 break;
381 default:
383 ACPI_ERROR((AE_INFO,
384 "Invalid object type: %X",
385 (operand[0])->common.type));
386 status = AE_AML_INTERNAL;
387 goto cleanup;
390 /* Failure means that the Index was beyond the end of the object */
392 if (ACPI_FAILURE(status)) {
393 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));
397 goto cleanup;
401 * Save the target object and add a reference to it for the life
402 * of the index
404 return_desc->reference.object = operand[0];
405 acpi_ut_add_reference(operand[0]);
407 /* Store the reference to the Target */
409 status = acpi_ex_store(return_desc, operand[2], walk_state);
411 /* Return the reference */
413 walk_state->result_obj = return_desc;
414 goto cleanup;
416 default:
418 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
419 walk_state->opcode));
420 status = AE_AML_BAD_OPCODE;
421 break;
424 store_result_to_target:
426 if (ACPI_SUCCESS(status)) {
428 * Store the result of the operation (which is now in return_desc) into
429 * the Target descriptor.
431 status = acpi_ex_store(return_desc, operand[2], walk_state);
432 if (ACPI_FAILURE(status)) {
433 goto cleanup;
436 if (!walk_state->result_obj) {
437 walk_state->result_obj = return_desc;
441 cleanup:
443 /* Delete return object on error */
445 if (ACPI_FAILURE(status)) {
446 acpi_ut_remove_reference(return_desc);
447 walk_state->result_obj = NULL;
450 return_ACPI_STATUS(status);
453 /*******************************************************************************
455 * FUNCTION: acpi_ex_opcode_2A_0T_1R
457 * PARAMETERS: walk_state - Current walk state
459 * RETURN: Status
461 * DESCRIPTION: Execute opcode with 2 arguments, no target, and a return value
463 ******************************************************************************/
465 acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state)
467 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;
472 ACPI_FUNCTION_TRACE_STR(ex_opcode_2A_0T_1R,
473 acpi_ps_get_opcode_name(walk_state->opcode));
475 /* Create the internal return object */
477 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
478 if (!return_desc) {
479 status = AE_NO_MEMORY;
480 goto cleanup;
483 /* Execute the Opcode */
485 if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) {
487 /* logical_op (Operand0, Operand1) */
489 status = acpi_ex_do_logical_numeric_op(walk_state->opcode,
490 operand[0]->integer.
491 value,
492 operand[1]->integer.
493 value, &logical_result);
494 goto store_logical_result;
495 } else if (walk_state->op_info->flags & AML_LOGICAL) {
497 /* logical_op (Operand0, Operand1) */
499 status = acpi_ex_do_logical_op(walk_state->opcode, operand[0],
500 operand[1], &logical_result);
501 goto store_logical_result;
504 switch (walk_state->opcode) {
505 case AML_ACQUIRE_OP: /* Acquire (mutex_object, Timeout) */
507 status =
508 acpi_ex_acquire_mutex(operand[1], operand[0], walk_state);
509 if (status == AE_TIME) {
510 logical_result = TRUE; /* TRUE = Acquire timed out */
511 status = AE_OK;
513 break;
515 case AML_WAIT_OP: /* Wait (event_object, Timeout) */
517 status = acpi_ex_system_wait_event(operand[1], operand[0]);
518 if (status == AE_TIME) {
519 logical_result = TRUE; /* TRUE, Wait timed out */
520 status = AE_OK;
522 break;
524 default:
526 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
527 walk_state->opcode));
529 status = AE_AML_BAD_OPCODE;
530 goto cleanup;
533 store_logical_result:
535 * Set return value to according to logical_result. logical TRUE (all ones)
536 * Default is FALSE (zero)
538 if (logical_result) {
539 return_desc->integer.value = ACPI_UINT64_MAX;
542 cleanup:
544 /* Delete return object on error */
546 if (ACPI_FAILURE(status)) {
547 acpi_ut_remove_reference(return_desc);
550 /* Save return object on success */
552 else {
553 walk_state->result_obj = return_desc;
556 return_ACPI_STATUS(status);