1 /******************************************************************************
3 * Module Name: dsobject - Dispatcher object management routines
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
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>
52 #define _COMPONENT ACPI_DISPATCHER
53 ACPI_MODULE_NAME("dsobject")
55 /* Local prototypes */
57 acpi_ds_build_internal_object(struct acpi_walk_state
*walk_state
,
58 union acpi_parse_object
*op
,
59 union acpi_operand_object
**obj_desc_ptr
);
61 #ifndef ACPI_NO_METHOD_EXECUTION
62 /*******************************************************************************
64 * FUNCTION: acpi_ds_build_internal_object
66 * PARAMETERS: walk_state - Current walk state
67 * op - Parser object to be translated
68 * obj_desc_ptr - Where the ACPI internal object is returned
72 * DESCRIPTION: Translate a parser Op object to the equivalent namespace object
73 * Simple objects are any objects other than a package object!
75 ******************************************************************************/
78 acpi_ds_build_internal_object(struct acpi_walk_state
*walk_state
,
79 union acpi_parse_object
*op
,
80 union acpi_operand_object
**obj_desc_ptr
)
82 union acpi_operand_object
*obj_desc
;
84 acpi_object_type type
;
86 ACPI_FUNCTION_TRACE(ds_build_internal_object
);
89 if (op
->common
.aml_opcode
== AML_INT_NAMEPATH_OP
) {
91 * This is a named object reference. If this name was
92 * previously looked up in the namespace, it was stored in this op.
93 * Otherwise, go ahead and look it up now
95 if (!op
->common
.node
) {
96 status
= acpi_ns_lookup(walk_state
->scope_info
,
97 op
->common
.value
.string
,
100 ACPI_NS_SEARCH_PARENT
|
101 ACPI_NS_DONT_OPEN_SCOPE
, NULL
,
102 ACPI_CAST_INDIRECT_PTR(struct
107 if (ACPI_FAILURE(status
)) {
109 /* Check if we are resolving a named reference within a package */
111 if ((status
== AE_NOT_FOUND
)
112 && (acpi_gbl_enable_interpreter_slack
)
114 ((op
->common
.parent
->common
.aml_opcode
==
116 || (op
->common
.parent
->common
.aml_opcode
==
117 AML_VAR_PACKAGE_OP
))) {
119 * We didn't find the target and we are populating elements
120 * of a package - ignore if slack enabled. Some ASL code
121 * contains dangling invalid references in packages and
122 * expects that no exception will be issued. Leave the
123 * element as a null element. It cannot be used, but it
124 * can be overwritten by subsequent ASL code - this is
125 * typically the case.
127 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
128 "Ignoring unresolved reference in package [%4.4s]\n",
133 return_ACPI_STATUS(AE_OK
);
135 ACPI_ERROR_NAMESPACE(op
->common
.value
.
139 return_ACPI_STATUS(status
);
143 /* Special object resolution for elements of a package */
145 if ((op
->common
.parent
->common
.aml_opcode
== AML_PACKAGE_OP
) ||
146 (op
->common
.parent
->common
.aml_opcode
==
147 AML_VAR_PACKAGE_OP
)) {
149 * Attempt to resolve the node to a value before we insert it into
150 * the package. If this is a reference to a common data type,
151 * resolve it immediately. According to the ACPI spec, package
152 * elements can only be "data objects" or method references.
153 * Attempt to resolve to an Integer, Buffer, String or Package.
154 * If cannot, return the named reference (for things like Devices,
155 * Methods, etc.) Buffer Fields and Fields will resolve to simple
156 * objects (int/buf/str/pkg).
158 * NOTE: References to things like Devices, Methods, Mutexes, etc.
159 * will remain as named references. This behavior is not described
160 * in the ACPI spec, but it appears to be an oversight.
163 ACPI_CAST_PTR(union acpi_operand_object
,
167 acpi_ex_resolve_node_to_value(ACPI_CAST_INDIRECT_PTR
172 if (ACPI_FAILURE(status
)) {
173 return_ACPI_STATUS(status
);
177 * Special handling for Alias objects. We need to setup the type
178 * and the Op->Common.Node to point to the Alias target. Note,
179 * Alias has at most one level of indirection internally.
181 type
= op
->common
.node
->type
;
182 if (type
== ACPI_TYPE_LOCAL_ALIAS
) {
183 type
= obj_desc
->common
.type
;
185 ACPI_CAST_PTR(struct acpi_namespace_node
,
186 op
->common
.node
->object
);
191 * For these types, we need the actual node, not the subobject.
192 * However, the subobject did not get an extra reference count above.
194 * TBD: should ex_resolve_node_to_value be changed to fix this?
196 case ACPI_TYPE_DEVICE
:
197 case ACPI_TYPE_THERMAL
:
199 acpi_ut_add_reference(op
->common
.node
->object
);
201 /*lint -fallthrough */
203 * For these types, we need the actual node, not the subobject.
204 * The subobject got an extra reference count in ex_resolve_node_to_value.
206 case ACPI_TYPE_MUTEX
:
207 case ACPI_TYPE_METHOD
:
208 case ACPI_TYPE_POWER
:
209 case ACPI_TYPE_PROCESSOR
:
210 case ACPI_TYPE_EVENT
:
211 case ACPI_TYPE_REGION
:
213 /* We will create a reference object for these types below */
218 * All other types - the node was resolved to an actual
219 * object, we are done.
226 /* Create and init a new internal ACPI object */
228 obj_desc
= acpi_ut_create_internal_object((acpi_ps_get_opcode_info
229 (op
->common
.aml_opcode
))->
232 return_ACPI_STATUS(AE_NO_MEMORY
);
236 acpi_ds_init_object_from_op(walk_state
, op
, op
->common
.aml_opcode
,
238 if (ACPI_FAILURE(status
)) {
239 acpi_ut_remove_reference(obj_desc
);
240 return_ACPI_STATUS(status
);
244 *obj_desc_ptr
= obj_desc
;
245 return_ACPI_STATUS(status
);
248 /*******************************************************************************
250 * FUNCTION: acpi_ds_build_internal_buffer_obj
252 * PARAMETERS: walk_state - Current walk state
253 * op - Parser object to be translated
254 * buffer_length - Length of the buffer
255 * obj_desc_ptr - Where the ACPI internal object is returned
259 * DESCRIPTION: Translate a parser Op package object to the equivalent
262 ******************************************************************************/
265 acpi_ds_build_internal_buffer_obj(struct acpi_walk_state
*walk_state
,
266 union acpi_parse_object
*op
,
268 union acpi_operand_object
**obj_desc_ptr
)
270 union acpi_parse_object
*arg
;
271 union acpi_operand_object
*obj_desc
;
272 union acpi_parse_object
*byte_list
;
273 u32 byte_list_length
= 0;
275 ACPI_FUNCTION_TRACE(ds_build_internal_buffer_obj
);
278 * If we are evaluating a Named buffer object "Name (xxxx, Buffer)".
279 * The buffer object already exists (from the NS node), otherwise it must
282 obj_desc
= *obj_desc_ptr
;
285 /* Create a new buffer object */
287 obj_desc
= acpi_ut_create_internal_object(ACPI_TYPE_BUFFER
);
288 *obj_desc_ptr
= obj_desc
;
290 return_ACPI_STATUS(AE_NO_MEMORY
);
295 * Second arg is the buffer data (optional) byte_list can be either
296 * individual bytes or a string initializer. In either case, a
297 * byte_list appears in the AML.
299 arg
= op
->common
.value
.arg
; /* skip first arg */
301 byte_list
= arg
->named
.next
;
303 if (byte_list
->common
.aml_opcode
!= AML_INT_BYTELIST_OP
) {
305 "Expecting bytelist, found AML opcode 0x%X in op %p",
306 byte_list
->common
.aml_opcode
, byte_list
));
308 acpi_ut_remove_reference(obj_desc
);
312 byte_list_length
= (u32
) byte_list
->common
.value
.integer
;
316 * The buffer length (number of bytes) will be the larger of:
317 * 1) The specified buffer length and
318 * 2) The length of the initializer byte list
320 obj_desc
->buffer
.length
= buffer_length
;
321 if (byte_list_length
> buffer_length
) {
322 obj_desc
->buffer
.length
= byte_list_length
;
325 /* Allocate the buffer */
327 if (obj_desc
->buffer
.length
== 0) {
328 obj_desc
->buffer
.pointer
= NULL
;
329 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
330 "Buffer defined with zero length in AML, creating\n"));
332 obj_desc
->buffer
.pointer
=
333 ACPI_ALLOCATE_ZEROED(obj_desc
->buffer
.length
);
334 if (!obj_desc
->buffer
.pointer
) {
335 acpi_ut_delete_object_desc(obj_desc
);
336 return_ACPI_STATUS(AE_NO_MEMORY
);
339 /* Initialize buffer from the byte_list (if present) */
342 memcpy(obj_desc
->buffer
.pointer
, byte_list
->named
.data
,
347 obj_desc
->buffer
.flags
|= AOPOBJ_DATA_VALID
;
348 op
->common
.node
= ACPI_CAST_PTR(struct acpi_namespace_node
, obj_desc
);
349 return_ACPI_STATUS(AE_OK
);
352 /*******************************************************************************
354 * FUNCTION: acpi_ds_build_internal_package_obj
356 * PARAMETERS: walk_state - Current walk state
357 * op - Parser object to be translated
358 * element_count - Number of elements in the package - this is
359 * the num_elements argument to Package()
360 * obj_desc_ptr - Where the ACPI internal object is returned
364 * DESCRIPTION: Translate a parser Op package object to the equivalent
367 * NOTE: The number of elements in the package will be always be the num_elements
368 * count, regardless of the number of elements in the package list. If
369 * num_elements is smaller, only that many package list elements are used.
370 * if num_elements is larger, the Package object is padded out with
371 * objects of type Uninitialized (as per ACPI spec.)
373 * Even though the ASL compilers do not allow num_elements to be smaller
374 * than the Package list length (for the fixed length package opcode), some
375 * BIOS code modifies the AML on the fly to adjust the num_elements, and
376 * this code compensates for that. This also provides compatibility with
377 * other AML interpreters.
379 ******************************************************************************/
382 acpi_ds_build_internal_package_obj(struct acpi_walk_state
*walk_state
,
383 union acpi_parse_object
*op
,
385 union acpi_operand_object
**obj_desc_ptr
)
387 union acpi_parse_object
*arg
;
388 union acpi_parse_object
*parent
;
389 union acpi_operand_object
*obj_desc
= NULL
;
390 acpi_status status
= AE_OK
;
395 ACPI_FUNCTION_TRACE(ds_build_internal_package_obj
);
397 /* Find the parent of a possibly nested package */
399 parent
= op
->common
.parent
;
400 while ((parent
->common
.aml_opcode
== AML_PACKAGE_OP
) ||
401 (parent
->common
.aml_opcode
== AML_VAR_PACKAGE_OP
)) {
402 parent
= parent
->common
.parent
;
406 * If we are evaluating a Named package object "Name (xxxx, Package)",
407 * the package object already exists, otherwise it must be created.
409 obj_desc
= *obj_desc_ptr
;
411 obj_desc
= acpi_ut_create_internal_object(ACPI_TYPE_PACKAGE
);
412 *obj_desc_ptr
= obj_desc
;
414 return_ACPI_STATUS(AE_NO_MEMORY
);
417 obj_desc
->package
.node
= parent
->common
.node
;
421 * Allocate the element array (array of pointers to the individual
422 * objects) based on the num_elements parameter. Add an extra pointer slot
423 * so that the list is always null terminated.
425 obj_desc
->package
.elements
= ACPI_ALLOCATE_ZEROED(((acpi_size
)
427 1) * sizeof(void *));
429 if (!obj_desc
->package
.elements
) {
430 acpi_ut_delete_object_desc(obj_desc
);
431 return_ACPI_STATUS(AE_NO_MEMORY
);
434 obj_desc
->package
.count
= element_count
;
437 * Initialize the elements of the package, up to the num_elements count.
438 * Package is automatically padded with uninitialized (NULL) elements
439 * if num_elements is greater than the package list length. Likewise,
440 * Package is truncated if num_elements is less than the list length.
442 arg
= op
->common
.value
.arg
;
443 arg
= arg
->common
.next
;
444 for (i
= 0; arg
&& (i
< element_count
); i
++) {
445 if (arg
->common
.aml_opcode
== AML_INT_RETURN_VALUE_OP
) {
446 if (arg
->common
.node
->type
== ACPI_TYPE_METHOD
) {
448 * A method reference "looks" to the parser to be a method
449 * invocation, so we special case it here
451 arg
->common
.aml_opcode
= AML_INT_NAMEPATH_OP
;
453 acpi_ds_build_internal_object(walk_state
,
459 /* This package element is already built, just get it */
461 obj_desc
->package
.elements
[i
] =
462 ACPI_CAST_PTR(union acpi_operand_object
,
467 acpi_ds_build_internal_object(walk_state
, arg
,
474 /* Existing package, get existing reference count */
477 (*obj_desc_ptr
)->common
.reference_count
;
478 if (reference_count
> 1) {
480 /* Make new element ref count match original ref count */
482 for (index
= 0; index
< (reference_count
- 1);
484 acpi_ut_add_reference((obj_desc
->
491 arg
= arg
->common
.next
;
494 /* Check for match between num_elements and actual length of package_list */
498 * num_elements was exhausted, but there are remaining elements in the
499 * package_list. Truncate the package to num_elements.
501 * Note: technically, this is an error, from ACPI spec: "It is an error
502 * for NumElements to be less than the number of elements in the
503 * PackageList". However, we just print a message and
504 * no exception is returned. This provides Windows compatibility. Some
505 * BIOSs will alter the num_elements on the fly, creating this type
506 * of ill-formed package object.
510 * We must delete any package elements that were created earlier
511 * and are not going to be used because of the package truncation.
513 if (arg
->common
.node
) {
514 acpi_ut_remove_reference(ACPI_CAST_PTR
518 arg
->common
.node
= NULL
;
521 /* Find out how many elements there really are */
524 arg
= arg
->common
.next
;
527 ACPI_INFO(("Actual Package length (%u) is larger than "
528 "NumElements field (%u), truncated",
530 } else if (i
< element_count
) {
532 * Arg list (elements) was exhausted, but we did not reach num_elements count.
533 * Note: this is not an error, the package is padded out with NULLs.
535 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
536 "Package List length (%u) smaller than NumElements "
537 "count (%u), padded with null elements\n",
541 obj_desc
->package
.flags
|= AOPOBJ_DATA_VALID
;
542 op
->common
.node
= ACPI_CAST_PTR(struct acpi_namespace_node
, obj_desc
);
543 return_ACPI_STATUS(status
);
546 /*******************************************************************************
548 * FUNCTION: acpi_ds_create_node
550 * PARAMETERS: walk_state - Current walk state
551 * node - NS Node to be initialized
552 * op - Parser object to be translated
556 * DESCRIPTION: Create the object to be associated with a namespace node
558 ******************************************************************************/
561 acpi_ds_create_node(struct acpi_walk_state
*walk_state
,
562 struct acpi_namespace_node
*node
,
563 union acpi_parse_object
*op
)
566 union acpi_operand_object
*obj_desc
;
568 ACPI_FUNCTION_TRACE_PTR(ds_create_node
, op
);
571 * Because of the execution pass through the non-control-method
572 * parts of the table, we can arrive here twice. Only init
573 * the named object node the first time through
575 if (acpi_ns_get_attached_object(node
)) {
576 return_ACPI_STATUS(AE_OK
);
579 if (!op
->common
.value
.arg
) {
581 /* No arguments, there is nothing to do */
583 return_ACPI_STATUS(AE_OK
);
586 /* Build an internal object for the argument(s) */
589 acpi_ds_build_internal_object(walk_state
, op
->common
.value
.arg
,
591 if (ACPI_FAILURE(status
)) {
592 return_ACPI_STATUS(status
);
595 /* Re-type the object according to its argument */
597 node
->type
= obj_desc
->common
.type
;
599 /* Attach obj to node */
601 status
= acpi_ns_attach_object(node
, obj_desc
, node
->type
);
603 /* Remove local reference to the object */
605 acpi_ut_remove_reference(obj_desc
);
606 return_ACPI_STATUS(status
);
609 #endif /* ACPI_NO_METHOD_EXECUTION */
611 /*******************************************************************************
613 * FUNCTION: acpi_ds_init_object_from_op
615 * PARAMETERS: walk_state - Current walk state
616 * op - Parser op used to init the internal object
617 * opcode - AML opcode associated with the object
618 * ret_obj_desc - Namespace object to be initialized
622 * DESCRIPTION: Initialize a namespace object from a parser Op and its
623 * associated arguments. The namespace object is a more compact
624 * representation of the Op and its arguments.
626 ******************************************************************************/
629 acpi_ds_init_object_from_op(struct acpi_walk_state
*walk_state
,
630 union acpi_parse_object
*op
,
632 union acpi_operand_object
**ret_obj_desc
)
634 const struct acpi_opcode_info
*op_info
;
635 union acpi_operand_object
*obj_desc
;
636 acpi_status status
= AE_OK
;
638 ACPI_FUNCTION_TRACE(ds_init_object_from_op
);
640 obj_desc
= *ret_obj_desc
;
641 op_info
= acpi_ps_get_opcode_info(opcode
);
642 if (op_info
->class == AML_CLASS_UNKNOWN
) {
646 return_ACPI_STATUS(AE_TYPE
);
649 /* Perform per-object initialization */
651 switch (obj_desc
->common
.type
) {
652 case ACPI_TYPE_BUFFER
:
654 * Defer evaluation of Buffer term_arg operand
656 obj_desc
->buffer
.node
=
657 ACPI_CAST_PTR(struct acpi_namespace_node
,
658 walk_state
->operands
[0]);
659 obj_desc
->buffer
.aml_start
= op
->named
.data
;
660 obj_desc
->buffer
.aml_length
= op
->named
.length
;
663 case ACPI_TYPE_PACKAGE
:
665 * Defer evaluation of Package term_arg operand
667 obj_desc
->package
.node
=
668 ACPI_CAST_PTR(struct acpi_namespace_node
,
669 walk_state
->operands
[0]);
670 obj_desc
->package
.aml_start
= op
->named
.data
;
671 obj_desc
->package
.aml_length
= op
->named
.length
;
674 case ACPI_TYPE_INTEGER
:
676 switch (op_info
->type
) {
677 case AML_TYPE_CONSTANT
:
679 * Resolve AML Constants here - AND ONLY HERE!
680 * All constants are integers.
681 * We mark the integer with a flag that indicates that it started
682 * life as a constant -- so that stores to constants will perform
683 * as expected (noop). zero_op is used as a placeholder for optional
686 obj_desc
->common
.flags
= AOPOBJ_AML_CONSTANT
;
691 obj_desc
->integer
.value
= 0;
696 obj_desc
->integer
.value
= 1;
701 obj_desc
->integer
.value
= ACPI_UINT64_MAX
;
703 /* Truncate value if we are executing from a 32-bit ACPI table */
705 #ifndef ACPI_NO_METHOD_EXECUTION
706 (void)acpi_ex_truncate_for32bit_table(obj_desc
);
710 case AML_REVISION_OP
:
712 obj_desc
->integer
.value
= ACPI_CA_VERSION
;
718 "Unknown constant opcode 0x%X",
720 status
= AE_AML_OPERAND_TYPE
;
725 case AML_TYPE_LITERAL
:
727 obj_desc
->integer
.value
= op
->common
.value
.integer
;
729 #ifndef ACPI_NO_METHOD_EXECUTION
730 if (acpi_ex_truncate_for32bit_table(obj_desc
)) {
732 /* Warn if we found a 64-bit constant in a 32-bit table */
734 ACPI_WARNING((AE_INFO
,
735 "Truncated 64-bit constant found in 32-bit table: %8.8X%8.8X => %8.8X",
736 ACPI_FORMAT_UINT64(op
->common
.
738 (u32
)obj_desc
->integer
.value
));
745 ACPI_ERROR((AE_INFO
, "Unknown Integer type 0x%X",
747 status
= AE_AML_OPERAND_TYPE
;
752 case ACPI_TYPE_STRING
:
754 obj_desc
->string
.pointer
= op
->common
.value
.string
;
755 obj_desc
->string
.length
= (u32
)strlen(op
->common
.value
.string
);
758 * The string is contained in the ACPI table, don't ever try
761 obj_desc
->common
.flags
|= AOPOBJ_STATIC_POINTER
;
764 case ACPI_TYPE_METHOD
:
767 case ACPI_TYPE_LOCAL_REFERENCE
:
769 switch (op_info
->type
) {
770 case AML_TYPE_LOCAL_VARIABLE
:
772 /* Local ID (0-7) is (AML opcode - base AML_LOCAL_OP) */
774 obj_desc
->reference
.value
=
775 ((u32
)opcode
) - AML_LOCAL_OP
;
776 obj_desc
->reference
.class = ACPI_REFCLASS_LOCAL
;
778 #ifndef ACPI_NO_METHOD_EXECUTION
780 acpi_ds_method_data_get_node(ACPI_REFCLASS_LOCAL
,
783 ACPI_CAST_INDIRECT_PTR
786 &obj_desc
->reference
.
791 case AML_TYPE_METHOD_ARGUMENT
:
793 /* Arg ID (0-6) is (AML opcode - base AML_ARG_OP) */
795 obj_desc
->reference
.value
= ((u32
)opcode
) - AML_ARG_OP
;
796 obj_desc
->reference
.class = ACPI_REFCLASS_ARG
;
798 #ifndef ACPI_NO_METHOD_EXECUTION
799 status
= acpi_ds_method_data_get_node(ACPI_REFCLASS_ARG
,
803 ACPI_CAST_INDIRECT_PTR
812 default: /* Object name or Debug object */
814 switch (op
->common
.aml_opcode
) {
815 case AML_INT_NAMEPATH_OP
:
817 /* Node was saved in Op */
819 obj_desc
->reference
.node
= op
->common
.node
;
820 obj_desc
->reference
.object
=
821 op
->common
.node
->object
;
822 obj_desc
->reference
.class = ACPI_REFCLASS_NAME
;
827 obj_desc
->reference
.class = ACPI_REFCLASS_DEBUG
;
833 "Unimplemented reference type for AML opcode: 0x%4.4X",
835 return_ACPI_STATUS(AE_AML_OPERAND_TYPE
);
843 ACPI_ERROR((AE_INFO
, "Unimplemented data type: 0x%X",
844 obj_desc
->common
.type
));
846 status
= AE_AML_OPERAND_TYPE
;
850 return_ACPI_STATUS(status
);