drm/panel: panel-himax-hx83102: support for csot-pna957qt1-1 MIPI-DSI panel
[drm/drm-misc.git] / drivers / acpi / acpica / exoparg1.c
blob20fb34b68beeaba88df0f6d25423577cf22075dc
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: exoparg1 - AML execution - opcodes with 1 argument
6 * Copyright (C) 2000 - 2023, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
11 #include "accommon.h"
12 #include "acparser.h"
13 #include "acdispat.h"
14 #include "acinterp.h"
15 #include "amlcode.h"
16 #include "acnamesp.h"
18 #define _COMPONENT ACPI_EXECUTER
19 ACPI_MODULE_NAME("exoparg1")
21 /*!
22 * Naming convention for AML interpreter execution routines.
24 * The routines that begin execution of AML opcodes are named with a common
25 * convention based upon the number of arguments, the number of target operands,
26 * and whether or not a value is returned:
28 * AcpiExOpcode_xA_yT_zR
30 * Where:
32 * xA - ARGUMENTS: The number of arguments (input operands) that are
33 * required for this opcode type (0 through 6 args).
34 * yT - TARGETS: The number of targets (output operands) that are required
35 * for this opcode type (0, 1, or 2 targets).
36 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
37 * as the function return (0 or 1).
39 * The AcpiExOpcode* functions are called via the Dispatcher component with
40 * fully resolved operands.
41 !*/
42 /*******************************************************************************
44 * FUNCTION: acpi_ex_opcode_0A_0T_1R
46 * PARAMETERS: walk_state - Current state (contains AML opcode)
48 * RETURN: Status
50 * DESCRIPTION: Execute operator with no operands, one return value
52 ******************************************************************************/
53 acpi_status acpi_ex_opcode_0A_0T_1R(struct acpi_walk_state *walk_state)
55 acpi_status status = AE_OK;
56 union acpi_operand_object *return_desc = NULL;
58 ACPI_FUNCTION_TRACE_STR(ex_opcode_0A_0T_1R,
59 acpi_ps_get_opcode_name(walk_state->opcode));
61 /* Examine the AML opcode */
63 switch (walk_state->opcode) {
64 case AML_TIMER_OP: /* Timer () */
66 /* Create a return object of type Integer */
68 return_desc =
69 acpi_ut_create_integer_object(acpi_os_get_timer());
70 if (!return_desc) {
71 status = AE_NO_MEMORY;
72 goto cleanup;
74 break;
76 default: /* Unknown opcode */
78 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
79 walk_state->opcode));
80 status = AE_AML_BAD_OPCODE;
81 break;
84 cleanup:
86 /* Delete return object on error */
88 if ((ACPI_FAILURE(status)) || walk_state->result_obj) {
89 acpi_ut_remove_reference(return_desc);
90 walk_state->result_obj = NULL;
91 } else {
92 /* Save the return value */
94 walk_state->result_obj = return_desc;
97 return_ACPI_STATUS(status);
100 /*******************************************************************************
102 * FUNCTION: acpi_ex_opcode_1A_0T_0R
104 * PARAMETERS: walk_state - Current state (contains AML opcode)
106 * RETURN: Status
108 * DESCRIPTION: Execute Type 1 monadic operator with numeric operand on
109 * object stack
111 ******************************************************************************/
113 acpi_status acpi_ex_opcode_1A_0T_0R(struct acpi_walk_state *walk_state)
115 union acpi_operand_object **operand = &walk_state->operands[0];
116 acpi_status status = AE_OK;
118 ACPI_FUNCTION_TRACE_STR(ex_opcode_1A_0T_0R,
119 acpi_ps_get_opcode_name(walk_state->opcode));
121 /* Examine the AML opcode */
123 switch (walk_state->opcode) {
124 case AML_RELEASE_OP: /* Release (mutex_object) */
126 status = acpi_ex_release_mutex(operand[0], walk_state);
127 break;
129 case AML_RESET_OP: /* Reset (event_object) */
131 status = acpi_ex_system_reset_event(operand[0]);
132 break;
134 case AML_SIGNAL_OP: /* Signal (event_object) */
136 status = acpi_ex_system_signal_event(operand[0]);
137 break;
139 case AML_SLEEP_OP: /* Sleep (msec_time) */
141 status = acpi_ex_system_do_sleep(operand[0]->integer.value);
142 break;
144 case AML_STALL_OP: /* Stall (usec_time) */
146 status =
147 acpi_ex_system_do_stall((u32) operand[0]->integer.value);
148 break;
150 case AML_UNLOAD_OP: /* Unload (Handle) */
152 status = acpi_ex_unload_table(operand[0]);
153 break;
155 default: /* Unknown opcode */
157 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
158 walk_state->opcode));
159 status = AE_AML_BAD_OPCODE;
160 break;
163 return_ACPI_STATUS(status);
166 #ifdef _OBSOLETE_CODE /* Was originally used for Load() operator */
167 /*******************************************************************************
169 * FUNCTION: acpi_ex_opcode_1A_1T_0R
171 * PARAMETERS: walk_state - Current state (contains AML opcode)
173 * RETURN: Status
175 * DESCRIPTION: Execute opcode with one argument, one target, and no
176 * return value.
178 ******************************************************************************/
180 acpi_status acpi_ex_opcode_1A_1T_0R(struct acpi_walk_state *walk_state)
182 acpi_status status = AE_OK;
183 union acpi_operand_object **operand = &walk_state->operands[0];
185 ACPI_FUNCTION_TRACE_STR(ex_opcode_1A_1T_0R,
186 acpi_ps_get_opcode_name(walk_state->opcode));
188 /* Examine the AML opcode */
190 switch (walk_state->opcode) {
191 #ifdef _OBSOLETE_CODE
192 case AML_LOAD_OP:
194 status = acpi_ex_load_op(operand[0], operand[1], walk_state);
195 break;
196 #endif
198 default: /* Unknown opcode */
200 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
201 walk_state->opcode));
202 status = AE_AML_BAD_OPCODE;
203 goto cleanup;
206 cleanup:
208 return_ACPI_STATUS(status);
210 #endif
212 /*******************************************************************************
214 * FUNCTION: acpi_ex_opcode_1A_1T_1R
216 * PARAMETERS: walk_state - Current state (contains AML opcode)
218 * RETURN: Status
220 * DESCRIPTION: Execute opcode with one argument, one target, and a
221 * return value.
222 * January 2022: Added Load operator, with new ACPI 6.4
223 * semantics.
225 ******************************************************************************/
227 acpi_status acpi_ex_opcode_1A_1T_1R(struct acpi_walk_state *walk_state)
229 acpi_status status = AE_OK;
230 union acpi_operand_object **operand = &walk_state->operands[0];
231 union acpi_operand_object *return_desc = NULL;
232 union acpi_operand_object *return_desc2 = NULL;
233 u32 temp32;
234 u32 i;
235 u64 power_of_ten;
236 u64 digit;
238 ACPI_FUNCTION_TRACE_STR(ex_opcode_1A_1T_1R,
239 acpi_ps_get_opcode_name(walk_state->opcode));
241 /* Examine the AML opcode */
243 switch (walk_state->opcode) {
244 case AML_BIT_NOT_OP:
245 case AML_FIND_SET_LEFT_BIT_OP:
246 case AML_FIND_SET_RIGHT_BIT_OP:
247 case AML_FROM_BCD_OP:
248 case AML_LOAD_OP:
249 case AML_TO_BCD_OP:
250 case AML_CONDITIONAL_REF_OF_OP:
252 /* Create a return object of type Integer for these opcodes */
254 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
255 if (!return_desc) {
256 status = AE_NO_MEMORY;
257 goto cleanup;
260 switch (walk_state->opcode) {
261 case AML_BIT_NOT_OP: /* Not (Operand, Result) */
263 return_desc->integer.value = ~operand[0]->integer.value;
264 break;
266 case AML_FIND_SET_LEFT_BIT_OP: /* find_set_left_bit (Operand, Result) */
268 return_desc->integer.value = operand[0]->integer.value;
271 * Acpi specification describes Integer type as a little
272 * endian unsigned value, so this boundary condition is valid.
274 for (temp32 = 0; return_desc->integer.value &&
275 temp32 < ACPI_INTEGER_BIT_SIZE; ++temp32) {
276 return_desc->integer.value >>= 1;
279 return_desc->integer.value = temp32;
280 break;
282 case AML_FIND_SET_RIGHT_BIT_OP: /* find_set_right_bit (Operand, Result) */
284 return_desc->integer.value = operand[0]->integer.value;
287 * The Acpi specification describes Integer type as a little
288 * endian unsigned value, so this boundary condition is valid.
290 for (temp32 = 0; return_desc->integer.value &&
291 temp32 < ACPI_INTEGER_BIT_SIZE; ++temp32) {
292 return_desc->integer.value <<= 1;
295 /* Since the bit position is one-based, subtract from 33 (65) */
297 return_desc->integer.value =
298 temp32 ==
299 0 ? 0 : (ACPI_INTEGER_BIT_SIZE + 1) - temp32;
300 break;
302 case AML_FROM_BCD_OP: /* from_bcd (BCDValue, Result) */
304 * The 64-bit ACPI integer can hold 16 4-bit BCD characters
305 * (if table is 32-bit, integer can hold 8 BCD characters)
306 * Convert each 4-bit BCD value
308 power_of_ten = 1;
309 return_desc->integer.value = 0;
310 digit = operand[0]->integer.value;
312 /* Convert each BCD digit (each is one nybble wide) */
314 for (i = 0;
315 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
316 i++) {
318 /* Get the least significant 4-bit BCD digit */
320 temp32 = ((u32) digit) & 0xF;
322 /* Check the range of the digit */
324 if (temp32 > 9) {
325 ACPI_ERROR((AE_INFO,
326 "BCD digit too large (not decimal): 0x%X",
327 temp32));
329 status = AE_AML_NUMERIC_OVERFLOW;
330 goto cleanup;
333 /* Sum the digit into the result with the current power of 10 */
335 return_desc->integer.value +=
336 (((u64) temp32) * power_of_ten);
338 /* Shift to next BCD digit */
340 digit >>= 4;
342 /* Next power of 10 */
344 power_of_ten *= 10;
346 break;
348 case AML_LOAD_OP: /* Result1 = Load (Operand[0], Result1) */
350 return_desc->integer.value = 0;
351 status =
352 acpi_ex_load_op(operand[0], return_desc,
353 walk_state);
354 if (ACPI_SUCCESS(status)) {
356 /* Return -1 (non-zero) indicates success */
358 return_desc->integer.value = 0xFFFFFFFFFFFFFFFF;
360 break;
362 case AML_TO_BCD_OP: /* to_bcd (Operand, Result) */
364 return_desc->integer.value = 0;
365 digit = operand[0]->integer.value;
367 /* Each BCD digit is one nybble wide */
369 for (i = 0;
370 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
371 i++) {
372 (void)acpi_ut_short_divide(digit, 10, &digit,
373 &temp32);
376 * Insert the BCD digit that resides in the
377 * remainder from above
379 return_desc->integer.value |=
380 (((u64) temp32) << ACPI_MUL_4(i));
383 /* Overflow if there is any data left in Digit */
385 if (digit > 0) {
386 ACPI_ERROR((AE_INFO,
387 "Integer too large to convert to BCD: 0x%8.8X%8.8X",
388 ACPI_FORMAT_UINT64(operand[0]->
389 integer.value)));
390 status = AE_AML_NUMERIC_OVERFLOW;
391 goto cleanup;
393 break;
395 case AML_CONDITIONAL_REF_OF_OP: /* cond_ref_of (source_object, Result) */
397 * This op is a little strange because the internal return value is
398 * different than the return value stored in the result descriptor
399 * (There are really two return values)
401 if ((struct acpi_namespace_node *)operand[0] ==
402 acpi_gbl_root_node) {
404 * This means that the object does not exist in the namespace,
405 * return FALSE
407 return_desc->integer.value = 0;
408 goto cleanup;
411 /* Get the object reference, store it, and remove our reference */
413 status = acpi_ex_get_object_reference(operand[0],
414 &return_desc2,
415 walk_state);
416 if (ACPI_FAILURE(status)) {
417 goto cleanup;
420 status =
421 acpi_ex_store(return_desc2, operand[1], walk_state);
422 acpi_ut_remove_reference(return_desc2);
424 /* The object exists in the namespace, return TRUE */
426 return_desc->integer.value = ACPI_UINT64_MAX;
427 goto cleanup;
429 default:
431 /* No other opcodes get here */
433 break;
435 break;
437 case AML_STORE_OP: /* Store (Source, Target) */
439 * A store operand is typically a number, string, buffer or lvalue
440 * Be careful about deleting the source object,
441 * since the object itself may have been stored.
443 status = acpi_ex_store(operand[0], operand[1], walk_state);
444 if (ACPI_FAILURE(status)) {
445 return_ACPI_STATUS(status);
448 /* It is possible that the Store already produced a return object */
450 if (!walk_state->result_obj) {
452 * Normally, we would remove a reference on the Operand[0]
453 * parameter; But since it is being used as the internal return
454 * object (meaning we would normally increment it), the two
455 * cancel out, and we simply don't do anything.
457 walk_state->result_obj = operand[0];
458 walk_state->operands[0] = NULL; /* Prevent deletion */
460 return_ACPI_STATUS(status);
463 * ACPI 2.0 Opcodes
465 case AML_COPY_OBJECT_OP: /* copy_object (Source, Target) */
467 status =
468 acpi_ut_copy_iobject_to_iobject(operand[0], &return_desc,
469 walk_state);
470 break;
472 case AML_TO_DECIMAL_STRING_OP: /* to_decimal_string (Data, Result) */
474 status =
475 acpi_ex_convert_to_string(operand[0], &return_desc,
476 ACPI_EXPLICIT_CONVERT_DECIMAL);
477 if (return_desc == operand[0]) {
479 /* No conversion performed, add ref to handle return value */
481 acpi_ut_add_reference(return_desc);
483 break;
485 case AML_TO_HEX_STRING_OP: /* to_hex_string (Data, Result) */
487 status =
488 acpi_ex_convert_to_string(operand[0], &return_desc,
489 ACPI_EXPLICIT_CONVERT_HEX);
490 if (return_desc == operand[0]) {
492 /* No conversion performed, add ref to handle return value */
494 acpi_ut_add_reference(return_desc);
496 break;
498 case AML_TO_BUFFER_OP: /* to_buffer (Data, Result) */
500 status = acpi_ex_convert_to_buffer(operand[0], &return_desc);
501 if (return_desc == operand[0]) {
503 /* No conversion performed, add ref to handle return value */
505 acpi_ut_add_reference(return_desc);
507 break;
509 case AML_TO_INTEGER_OP: /* to_integer (Data, Result) */
511 /* Perform "explicit" conversion */
513 status =
514 acpi_ex_convert_to_integer(operand[0], &return_desc, 0);
515 if (return_desc == operand[0]) {
517 /* No conversion performed, add ref to handle return value */
519 acpi_ut_add_reference(return_desc);
521 break;
523 case AML_SHIFT_LEFT_BIT_OP: /* shift_left_bit (Source, bit_num) */
524 case AML_SHIFT_RIGHT_BIT_OP: /* shift_right_bit (Source, bit_num) */
526 /* These are two obsolete opcodes */
528 ACPI_ERROR((AE_INFO,
529 "%s is obsolete and not implemented",
530 acpi_ps_get_opcode_name(walk_state->opcode)));
531 status = AE_SUPPORT;
532 goto cleanup;
534 default: /* Unknown opcode */
536 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
537 walk_state->opcode));
538 status = AE_AML_BAD_OPCODE;
539 goto cleanup;
542 if (ACPI_SUCCESS(status)) {
544 /* Store the return value computed above into the target object */
546 status = acpi_ex_store(return_desc, operand[1], walk_state);
549 cleanup:
551 /* Delete return object on error */
553 if (ACPI_FAILURE(status)) {
554 acpi_ut_remove_reference(return_desc);
557 /* Save return object on success */
559 else if (!walk_state->result_obj) {
560 walk_state->result_obj = return_desc;
563 return_ACPI_STATUS(status);
566 /*******************************************************************************
568 * FUNCTION: acpi_ex_opcode_1A_0T_1R
570 * PARAMETERS: walk_state - Current state (contains AML opcode)
572 * RETURN: Status
574 * DESCRIPTION: Execute opcode with one argument, no target, and a return value
576 ******************************************************************************/
578 acpi_status acpi_ex_opcode_1A_0T_1R(struct acpi_walk_state *walk_state)
580 union acpi_operand_object **operand = &walk_state->operands[0];
581 union acpi_operand_object *temp_desc;
582 union acpi_operand_object *return_desc = NULL;
583 acpi_status status = AE_OK;
584 u32 type;
585 u64 value;
587 ACPI_FUNCTION_TRACE_STR(ex_opcode_1A_0T_1R,
588 acpi_ps_get_opcode_name(walk_state->opcode));
590 /* Examine the AML opcode */
592 switch (walk_state->opcode) {
593 case AML_LOGICAL_NOT_OP: /* LNot (Operand) */
595 return_desc = acpi_ut_create_integer_object((u64) 0);
596 if (!return_desc) {
597 status = AE_NO_MEMORY;
598 goto cleanup;
602 * Set result to ONES (TRUE) if Value == 0. Note:
603 * return_desc->Integer.Value is initially == 0 (FALSE) from above.
605 if (!operand[0]->integer.value) {
606 return_desc->integer.value = ACPI_UINT64_MAX;
608 break;
610 case AML_DECREMENT_OP: /* Decrement (Operand) */
611 case AML_INCREMENT_OP: /* Increment (Operand) */
613 * Create a new integer. Can't just get the base integer and
614 * increment it because it may be an Arg or Field.
616 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
617 if (!return_desc) {
618 status = AE_NO_MEMORY;
619 goto cleanup;
623 * Since we are expecting a Reference operand, it can be either a
624 * NS Node or an internal object.
626 temp_desc = operand[0];
627 if (ACPI_GET_DESCRIPTOR_TYPE(temp_desc) ==
628 ACPI_DESC_TYPE_OPERAND) {
630 /* Internal reference object - prevent deletion */
632 acpi_ut_add_reference(temp_desc);
636 * Convert the Reference operand to an Integer (This removes a
637 * reference on the Operand[0] object)
639 * NOTE: We use LNOT_OP here in order to force resolution of the
640 * reference operand to an actual integer.
642 status = acpi_ex_resolve_operands(AML_LOGICAL_NOT_OP,
643 &temp_desc, walk_state);
644 if (ACPI_FAILURE(status)) {
645 ACPI_EXCEPTION((AE_INFO, status,
646 "While resolving operands for [%s]",
647 acpi_ps_get_opcode_name(walk_state->
648 opcode)));
650 goto cleanup;
654 * temp_desc is now guaranteed to be an Integer object --
655 * Perform the actual increment or decrement
657 if (walk_state->opcode == AML_INCREMENT_OP) {
658 return_desc->integer.value =
659 temp_desc->integer.value + 1;
660 } else {
661 return_desc->integer.value =
662 temp_desc->integer.value - 1;
665 /* Finished with this Integer object */
667 acpi_ut_remove_reference(temp_desc);
670 * Store the result back (indirectly) through the original
671 * Reference object
673 status = acpi_ex_store(return_desc, operand[0], walk_state);
674 break;
676 case AML_OBJECT_TYPE_OP: /* object_type (source_object) */
678 * Note: The operand is not resolved at this point because we want to
679 * get the associated object, not its value. For example, we don't
680 * want to resolve a field_unit to its value, we want the actual
681 * field_unit object.
684 /* Get the type of the base object */
686 status =
687 acpi_ex_resolve_multiple(walk_state, operand[0], &type,
688 NULL);
689 if (ACPI_FAILURE(status)) {
690 goto cleanup;
693 /* Allocate a descriptor to hold the type. */
695 return_desc = acpi_ut_create_integer_object((u64) type);
696 if (!return_desc) {
697 status = AE_NO_MEMORY;
698 goto cleanup;
700 break;
702 case AML_SIZE_OF_OP: /* size_of (source_object) */
704 * Note: The operand is not resolved at this point because we want to
705 * get the associated object, not its value.
708 /* Get the base object */
710 status =
711 acpi_ex_resolve_multiple(walk_state, operand[0], &type,
712 &temp_desc);
713 if (ACPI_FAILURE(status)) {
714 goto cleanup;
718 * The type of the base object must be integer, buffer, string, or
719 * package. All others are not supported.
721 * NOTE: Integer is not specifically supported by the ACPI spec,
722 * but is supported implicitly via implicit operand conversion.
723 * rather than bother with conversion, we just use the byte width
724 * global (4 or 8 bytes).
726 switch (type) {
727 case ACPI_TYPE_INTEGER:
729 value = acpi_gbl_integer_byte_width;
730 break;
732 case ACPI_TYPE_STRING:
734 value = temp_desc->string.length;
735 break;
737 case ACPI_TYPE_BUFFER:
739 /* Buffer arguments may not be evaluated at this point */
741 status = acpi_ds_get_buffer_arguments(temp_desc);
742 value = temp_desc->buffer.length;
743 break;
745 case ACPI_TYPE_PACKAGE:
747 /* Package arguments may not be evaluated at this point */
749 status = acpi_ds_get_package_arguments(temp_desc);
750 value = temp_desc->package.count;
751 break;
753 default:
755 ACPI_ERROR((AE_INFO,
756 "Operand must be Buffer/Integer/String/Package"
757 " - found type %s",
758 acpi_ut_get_type_name(type)));
760 status = AE_AML_OPERAND_TYPE;
761 goto cleanup;
764 if (ACPI_FAILURE(status)) {
765 goto cleanup;
769 * Now that we have the size of the object, create a result
770 * object to hold the value
772 return_desc = acpi_ut_create_integer_object(value);
773 if (!return_desc) {
774 status = AE_NO_MEMORY;
775 goto cleanup;
777 break;
779 case AML_REF_OF_OP: /* ref_of (source_object) */
781 status =
782 acpi_ex_get_object_reference(operand[0], &return_desc,
783 walk_state);
784 if (ACPI_FAILURE(status)) {
785 goto cleanup;
787 break;
789 case AML_DEREF_OF_OP: /* deref_of (obj_reference | String) */
791 /* Check for a method local or argument, or standalone String */
793 if (ACPI_GET_DESCRIPTOR_TYPE(operand[0]) ==
794 ACPI_DESC_TYPE_NAMED) {
795 temp_desc =
796 acpi_ns_get_attached_object((struct
797 acpi_namespace_node *)
798 operand[0]);
799 if (temp_desc
800 && ((temp_desc->common.type == ACPI_TYPE_STRING)
801 || (temp_desc->common.type ==
802 ACPI_TYPE_LOCAL_REFERENCE))) {
803 operand[0] = temp_desc;
804 acpi_ut_add_reference(temp_desc);
805 } else {
806 status = AE_AML_OPERAND_TYPE;
807 goto cleanup;
809 } else {
810 switch ((operand[0])->common.type) {
811 case ACPI_TYPE_LOCAL_REFERENCE:
813 * This is a deref_of (local_x | arg_x)
815 * Must resolve/dereference the local/arg reference first
817 switch (operand[0]->reference.class) {
818 case ACPI_REFCLASS_LOCAL:
819 case ACPI_REFCLASS_ARG:
821 /* Set Operand[0] to the value of the local/arg */
823 status =
824 acpi_ds_method_data_get_value
825 (operand[0]->reference.class,
826 operand[0]->reference.value,
827 walk_state, &temp_desc);
828 if (ACPI_FAILURE(status)) {
829 goto cleanup;
833 * Delete our reference to the input object and
834 * point to the object just retrieved
836 acpi_ut_remove_reference(operand[0]);
837 operand[0] = temp_desc;
838 break;
840 case ACPI_REFCLASS_REFOF:
842 /* Get the object to which the reference refers */
844 temp_desc =
845 operand[0]->reference.object;
846 acpi_ut_remove_reference(operand[0]);
847 operand[0] = temp_desc;
848 break;
850 default:
852 /* Must be an Index op - handled below */
853 break;
855 break;
857 case ACPI_TYPE_STRING:
859 break;
861 default:
863 status = AE_AML_OPERAND_TYPE;
864 goto cleanup;
868 if (ACPI_GET_DESCRIPTOR_TYPE(operand[0]) !=
869 ACPI_DESC_TYPE_NAMED) {
870 if ((operand[0])->common.type == ACPI_TYPE_STRING) {
872 * This is a deref_of (String). The string is a reference
873 * to a named ACPI object.
875 * 1) Find the owning Node
876 * 2) Dereference the node to an actual object. Could be a
877 * Field, so we need to resolve the node to a value.
879 status =
880 acpi_ns_get_node_unlocked(walk_state->
881 scope_info->scope.
882 node,
883 operand[0]->
884 string.pointer,
885 ACPI_NS_SEARCH_PARENT,
886 ACPI_CAST_INDIRECT_PTR
887 (struct
888 acpi_namespace_node,
889 &return_desc));
890 if (ACPI_FAILURE(status)) {
891 goto cleanup;
894 status =
895 acpi_ex_resolve_node_to_value
896 (ACPI_CAST_INDIRECT_PTR
897 (struct acpi_namespace_node, &return_desc),
898 walk_state);
899 goto cleanup;
903 /* Operand[0] may have changed from the code above */
905 if (ACPI_GET_DESCRIPTOR_TYPE(operand[0]) ==
906 ACPI_DESC_TYPE_NAMED) {
908 * This is a deref_of (object_reference)
909 * Get the actual object from the Node (This is the dereference).
910 * This case may only happen when a local_x or arg_x is
911 * dereferenced above, or for references to device and
912 * thermal objects.
914 switch (((struct acpi_namespace_node *)operand[0])->
915 type) {
916 case ACPI_TYPE_DEVICE:
917 case ACPI_TYPE_THERMAL:
919 /* These types have no node subobject, return the NS node */
921 return_desc = operand[0];
922 break;
924 default:
925 /* For most types, get the object attached to the node */
927 return_desc = acpi_ns_get_attached_object((struct acpi_namespace_node *)operand[0]);
928 acpi_ut_add_reference(return_desc);
929 break;
931 } else {
933 * This must be a reference object produced by either the
934 * Index() or ref_of() operator
936 switch (operand[0]->reference.class) {
937 case ACPI_REFCLASS_INDEX:
939 * The target type for the Index operator must be
940 * either a Buffer or a Package
942 switch (operand[0]->reference.target_type) {
943 case ACPI_TYPE_BUFFER_FIELD:
945 temp_desc =
946 operand[0]->reference.object;
949 * Create a new object that contains one element of the
950 * buffer -- the element pointed to by the index.
952 * NOTE: index into a buffer is NOT a pointer to a
953 * sub-buffer of the main buffer, it is only a pointer to a
954 * single element (byte) of the buffer!
956 * Since we are returning the value of the buffer at the
957 * indexed location, we don't need to add an additional
958 * reference to the buffer itself.
960 return_desc =
961 acpi_ut_create_integer_object((u64)
962 temp_desc->buffer.pointer[operand[0]->reference.value]);
963 if (!return_desc) {
964 status = AE_NO_MEMORY;
965 goto cleanup;
967 break;
969 case ACPI_TYPE_PACKAGE:
971 * Return the referenced element of the package. We must
972 * add another reference to the referenced object, however.
974 return_desc =
975 *(operand[0]->reference.where);
976 if (!return_desc) {
978 * Element is NULL, do not allow the dereference.
979 * This provides compatibility with other ACPI
980 * implementations.
982 return_ACPI_STATUS
983 (AE_AML_UNINITIALIZED_ELEMENT);
986 acpi_ut_add_reference(return_desc);
987 break;
989 default:
991 ACPI_ERROR((AE_INFO,
992 "Unknown Index TargetType 0x%X in reference object %p",
993 operand[0]->reference.
994 target_type, operand[0]));
996 status = AE_AML_OPERAND_TYPE;
997 goto cleanup;
999 break;
1001 case ACPI_REFCLASS_REFOF:
1003 return_desc = operand[0]->reference.object;
1005 if (ACPI_GET_DESCRIPTOR_TYPE(return_desc) ==
1006 ACPI_DESC_TYPE_NAMED) {
1007 return_desc =
1008 acpi_ns_get_attached_object((struct
1009 acpi_namespace_node
1011 return_desc);
1012 if (!return_desc) {
1013 break;
1017 * June 2013:
1018 * buffer_fields/field_units require additional resolution
1020 switch (return_desc->common.type) {
1021 case ACPI_TYPE_BUFFER_FIELD:
1022 case ACPI_TYPE_LOCAL_REGION_FIELD:
1023 case ACPI_TYPE_LOCAL_BANK_FIELD:
1024 case ACPI_TYPE_LOCAL_INDEX_FIELD:
1026 status =
1027 acpi_ex_read_data_from_field
1028 (walk_state, return_desc,
1029 &temp_desc);
1030 if (ACPI_FAILURE(status)) {
1031 return_ACPI_STATUS
1032 (status);
1035 return_desc = temp_desc;
1036 break;
1038 default:
1040 /* Add another reference to the object */
1042 acpi_ut_add_reference
1043 (return_desc);
1044 break;
1047 break;
1049 default:
1051 ACPI_ERROR((AE_INFO,
1052 "Unknown class in reference(%p) - 0x%2.2X",
1053 operand[0],
1054 operand[0]->reference.class));
1056 status = AE_TYPE;
1057 goto cleanup;
1060 break;
1062 default:
1064 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
1065 walk_state->opcode));
1067 status = AE_AML_BAD_OPCODE;
1068 goto cleanup;
1071 cleanup:
1073 /* Delete return object on error */
1075 if (ACPI_FAILURE(status)) {
1076 acpi_ut_remove_reference(return_desc);
1079 /* Save return object on success */
1081 else {
1082 walk_state->result_obj = return_desc;
1085 return_ACPI_STATUS(status);