1 /******************************************************************************
3 * Module Name: dsobject - Dispatcher object management routines
5 *****************************************************************************/
7 /******************************************************************************
11 * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
12 * All rights reserved.
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24 * base code distributed originally by Intel ("Original Intel Code") to copy,
25 * make derivatives, distribute, use and display any portion of the Covered
26 * Code in any form, with the right to sublicense such rights; and
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29 * license (with the right to sublicense), under only those claims of Intel
30 * patents that are infringed by the Original Intel Code, to make, use, sell,
31 * offer to sell, and import the Covered Code and derivative works thereof
32 * solely to the minimum extent necessary to exercise the above copyright
33 * license, and in no event shall the patent license extend to any additions
34 * to or modifications of the Original Intel Code. No other license or right
35 * is granted directly or by implication, estoppel or otherwise;
37 * The above copyright and patent license is granted only if the following
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
45 * the above Copyright Notice, the above License, this list of Conditions,
46 * and the following Disclaimer and Export Compliance provision. In addition,
47 * Licensee must cause all Covered Code to which Licensee contributes to
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
50 * documentation of any changes made by any predecessor Licensee. Licensee
51 * must include a prominent statement that the modification is derived,
52 * directly or indirectly, from Original Intel Code.
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
59 * addition, Licensee may not authorize further sublicense of source of any
60 * portion of the Covered Code, and must include terms to the effect that the
61 * license from Licensee to its licensee is limited to the intellectual
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee may
66 * 3.3. Redistribution of Executable. Redistribution in executable form of any
67 * substantial portion of the Covered Code or modification must reproduce the
68 * above Copyright Notice, and the following Disclaimer and Export Compliance
69 * provision in the documentation and/or other materials provided with the
72 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76 * Intel shall be used in advertising or otherwise to promote the sale, use or
77 * other dealings in products derived from or relating to the Covered Code
78 * without prior written authorization from Intel.
80 * 4. Disclaimer and Export Compliance
82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * 4.3. Licensee shall not export, either directly or indirectly, any of this
100 * software or system incorporating such software without first obtaining any
101 * required license or other approval from the U. S. Department of Commerce or
102 * any other agency or department of the United States Government. In the
103 * event Licensee exports any such software from the United States or
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108 * any of its subsidiaries will export/re-export any technical data, process,
109 * software, or service, directly or indirectly, to any country for which the
110 * United States government or any agency thereof requires an export license,
111 * other governmental approval, or letter of assurance, without first obtaining
112 * such license, approval or letter.
114 *****************************************************************************/
116 #define __DSOBJECT_C__
119 #include "accommon.h"
120 #include "acparser.h"
122 #include "acdispat.h"
123 #include "acnamesp.h"
124 #include "acinterp.h"
126 #define _COMPONENT ACPI_DISPATCHER
127 ACPI_MODULE_NAME ("dsobject")
129 /* Local prototypes */
132 AcpiDsBuildInternalObject (
133 ACPI_WALK_STATE
*WalkState
,
134 ACPI_PARSE_OBJECT
*Op
,
135 ACPI_OPERAND_OBJECT
**ObjDescPtr
);
138 #ifndef ACPI_NO_METHOD_EXECUTION
139 /*******************************************************************************
141 * FUNCTION: AcpiDsBuildInternalObject
143 * PARAMETERS: WalkState - Current walk state
144 * Op - Parser object to be translated
145 * ObjDescPtr - Where the ACPI internal object is returned
149 * DESCRIPTION: Translate a parser Op object to the equivalent namespace object
150 * Simple objects are any objects other than a package object!
152 ******************************************************************************/
155 AcpiDsBuildInternalObject (
156 ACPI_WALK_STATE
*WalkState
,
157 ACPI_PARSE_OBJECT
*Op
,
158 ACPI_OPERAND_OBJECT
**ObjDescPtr
)
160 ACPI_OPERAND_OBJECT
*ObjDesc
;
164 ACPI_FUNCTION_TRACE (DsBuildInternalObject
);
168 if (Op
->Common
.AmlOpcode
== AML_INT_NAMEPATH_OP
)
171 * This is a named object reference. If this name was
172 * previously looked up in the namespace, it was stored in this op.
173 * Otherwise, go ahead and look it up now
175 if (!Op
->Common
.Node
)
177 Status
= AcpiNsLookup (WalkState
->ScopeInfo
,
178 Op
->Common
.Value
.String
,
179 ACPI_TYPE_ANY
, ACPI_IMODE_EXECUTE
,
180 ACPI_NS_SEARCH_PARENT
| ACPI_NS_DONT_OPEN_SCOPE
, NULL
,
181 ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE
, &(Op
->Common
.Node
)));
182 if (ACPI_FAILURE (Status
))
184 /* Check if we are resolving a named reference within a package */
186 if ((Status
== AE_NOT_FOUND
) && (AcpiGbl_EnableInterpreterSlack
) &&
188 ((Op
->Common
.Parent
->Common
.AmlOpcode
== AML_PACKAGE_OP
) ||
189 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_VAR_PACKAGE_OP
)))
192 * We didn't find the target and we are populating elements
193 * of a package - ignore if slack enabled. Some ASL code
194 * contains dangling invalid references in packages and
195 * expects that no exception will be issued. Leave the
196 * element as a null element. It cannot be used, but it
197 * can be overwritten by subsequent ASL code - this is
198 * typically the case.
200 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
201 "Ignoring unresolved reference in package [%4.4s]\n",
202 WalkState
->ScopeInfo
->Scope
.Node
->Name
.Ascii
));
204 return_ACPI_STATUS (AE_OK
);
208 ACPI_ERROR_NAMESPACE (Op
->Common
.Value
.String
, Status
);
211 return_ACPI_STATUS (Status
);
215 /* Special object resolution for elements of a package */
217 if ((Op
->Common
.Parent
->Common
.AmlOpcode
== AML_PACKAGE_OP
) ||
218 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_VAR_PACKAGE_OP
))
221 * Attempt to resolve the node to a value before we insert it into
222 * the package. If this is a reference to a common data type,
223 * resolve it immediately. According to the ACPI spec, package
224 * elements can only be "data objects" or method references.
225 * Attempt to resolve to an Integer, Buffer, String or Package.
226 * If cannot, return the named reference (for things like Devices,
227 * Methods, etc.) Buffer Fields and Fields will resolve to simple
228 * objects (int/buf/str/pkg).
230 * NOTE: References to things like Devices, Methods, Mutexes, etc.
231 * will remain as named references. This behavior is not described
232 * in the ACPI spec, but it appears to be an oversight.
234 ObjDesc
= ACPI_CAST_PTR (ACPI_OPERAND_OBJECT
, Op
->Common
.Node
);
236 Status
= AcpiExResolveNodeToValue (
237 ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE
, &ObjDesc
),
239 if (ACPI_FAILURE (Status
))
241 return_ACPI_STATUS (Status
);
244 switch (Op
->Common
.Node
->Type
)
247 * For these types, we need the actual node, not the subobject.
248 * However, the subobject did not get an extra reference count above.
250 * TBD: should ExResolveNodeToValue be changed to fix this?
252 case ACPI_TYPE_DEVICE
:
253 case ACPI_TYPE_THERMAL
:
255 AcpiUtAddReference (Op
->Common
.Node
->Object
);
257 /*lint -fallthrough */
259 * For these types, we need the actual node, not the subobject.
260 * The subobject got an extra reference count in ExResolveNodeToValue.
262 case ACPI_TYPE_MUTEX
:
263 case ACPI_TYPE_METHOD
:
264 case ACPI_TYPE_POWER
:
265 case ACPI_TYPE_PROCESSOR
:
266 case ACPI_TYPE_EVENT
:
267 case ACPI_TYPE_REGION
:
269 /* We will create a reference object for these types below */
274 * All other types - the node was resolved to an actual
275 * object, we are done.
282 /* Create and init a new internal ACPI object */
284 ObjDesc
= AcpiUtCreateInternalObject (
285 (AcpiPsGetOpcodeInfo (Op
->Common
.AmlOpcode
))->ObjectType
);
288 return_ACPI_STATUS (AE_NO_MEMORY
);
291 Status
= AcpiDsInitObjectFromOp (WalkState
, Op
, Op
->Common
.AmlOpcode
,
293 if (ACPI_FAILURE (Status
))
295 AcpiUtRemoveReference (ObjDesc
);
296 return_ACPI_STATUS (Status
);
300 *ObjDescPtr
= ObjDesc
;
301 return_ACPI_STATUS (Status
);
305 /*******************************************************************************
307 * FUNCTION: AcpiDsBuildInternalBufferObj
309 * PARAMETERS: WalkState - Current walk state
310 * Op - Parser object to be translated
311 * BufferLength - Length of the buffer
312 * ObjDescPtr - Where the ACPI internal object is returned
316 * DESCRIPTION: Translate a parser Op package object to the equivalent
319 ******************************************************************************/
322 AcpiDsBuildInternalBufferObj (
323 ACPI_WALK_STATE
*WalkState
,
324 ACPI_PARSE_OBJECT
*Op
,
326 ACPI_OPERAND_OBJECT
**ObjDescPtr
)
328 ACPI_PARSE_OBJECT
*Arg
;
329 ACPI_OPERAND_OBJECT
*ObjDesc
;
330 ACPI_PARSE_OBJECT
*ByteList
;
331 UINT32 ByteListLength
= 0;
334 ACPI_FUNCTION_TRACE (DsBuildInternalBufferObj
);
338 * If we are evaluating a Named buffer object "Name (xxxx, Buffer)".
339 * The buffer object already exists (from the NS node), otherwise it must
342 ObjDesc
= *ObjDescPtr
;
345 /* Create a new buffer object */
347 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_BUFFER
);
348 *ObjDescPtr
= ObjDesc
;
351 return_ACPI_STATUS (AE_NO_MEMORY
);
356 * Second arg is the buffer data (optional) ByteList can be either
357 * individual bytes or a string initializer. In either case, a
358 * ByteList appears in the AML.
360 Arg
= Op
->Common
.Value
.Arg
; /* skip first arg */
362 ByteList
= Arg
->Named
.Next
;
365 if (ByteList
->Common
.AmlOpcode
!= AML_INT_BYTELIST_OP
)
367 ACPI_ERROR ((AE_INFO
,
368 "Expecting bytelist, got AML opcode %X in op %p",
369 ByteList
->Common
.AmlOpcode
, ByteList
));
371 AcpiUtRemoveReference (ObjDesc
);
375 ByteListLength
= (UINT32
) ByteList
->Common
.Value
.Integer
;
379 * The buffer length (number of bytes) will be the larger of:
380 * 1) The specified buffer length and
381 * 2) The length of the initializer byte list
383 ObjDesc
->Buffer
.Length
= BufferLength
;
384 if (ByteListLength
> BufferLength
)
386 ObjDesc
->Buffer
.Length
= ByteListLength
;
389 /* Allocate the buffer */
391 if (ObjDesc
->Buffer
.Length
== 0)
393 ObjDesc
->Buffer
.Pointer
= NULL
;
394 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
,
395 "Buffer defined with zero length in AML, creating\n"));
399 ObjDesc
->Buffer
.Pointer
= ACPI_ALLOCATE_ZEROED (
400 ObjDesc
->Buffer
.Length
);
401 if (!ObjDesc
->Buffer
.Pointer
)
403 AcpiUtDeleteObjectDesc (ObjDesc
);
404 return_ACPI_STATUS (AE_NO_MEMORY
);
407 /* Initialize buffer from the ByteList (if present) */
411 ACPI_MEMCPY (ObjDesc
->Buffer
.Pointer
, ByteList
->Named
.Data
,
416 ObjDesc
->Buffer
.Flags
|= AOPOBJ_DATA_VALID
;
417 Op
->Common
.Node
= ACPI_CAST_PTR (ACPI_NAMESPACE_NODE
, ObjDesc
);
418 return_ACPI_STATUS (AE_OK
);
422 /*******************************************************************************
424 * FUNCTION: AcpiDsBuildInternalPackageObj
426 * PARAMETERS: WalkState - Current walk state
427 * Op - Parser object to be translated
428 * ElementCount - Number of elements in the package - this is
429 * the NumElements argument to Package()
430 * ObjDescPtr - Where the ACPI internal object is returned
434 * DESCRIPTION: Translate a parser Op package object to the equivalent
437 * NOTE: The number of elements in the package will be always be the NumElements
438 * count, regardless of the number of elements in the package list. If
439 * NumElements is smaller, only that many package list elements are used.
440 * if NumElements is larger, the Package object is padded out with
441 * objects of type Uninitialized (as per ACPI spec.)
443 * Even though the ASL compilers do not allow NumElements to be smaller
444 * than the Package list length (for the fixed length package opcode), some
445 * BIOS code modifies the AML on the fly to adjust the NumElements, and
446 * this code compensates for that. This also provides compatibility with
447 * other AML interpreters.
449 ******************************************************************************/
452 AcpiDsBuildInternalPackageObj (
453 ACPI_WALK_STATE
*WalkState
,
454 ACPI_PARSE_OBJECT
*Op
,
456 ACPI_OPERAND_OBJECT
**ObjDescPtr
)
458 ACPI_PARSE_OBJECT
*Arg
;
459 ACPI_PARSE_OBJECT
*Parent
;
460 ACPI_OPERAND_OBJECT
*ObjDesc
= NULL
;
461 ACPI_STATUS Status
= AE_OK
;
464 UINT16 ReferenceCount
;
467 ACPI_FUNCTION_TRACE (DsBuildInternalPackageObj
);
470 /* Find the parent of a possibly nested package */
472 Parent
= Op
->Common
.Parent
;
473 while ((Parent
->Common
.AmlOpcode
== AML_PACKAGE_OP
) ||
474 (Parent
->Common
.AmlOpcode
== AML_VAR_PACKAGE_OP
))
476 Parent
= Parent
->Common
.Parent
;
480 * If we are evaluating a Named package object "Name (xxxx, Package)",
481 * the package object already exists, otherwise it must be created.
483 ObjDesc
= *ObjDescPtr
;
486 ObjDesc
= AcpiUtCreateInternalObject (ACPI_TYPE_PACKAGE
);
487 *ObjDescPtr
= ObjDesc
;
490 return_ACPI_STATUS (AE_NO_MEMORY
);
493 ObjDesc
->Package
.Node
= Parent
->Common
.Node
;
497 * Allocate the element array (array of pointers to the individual
498 * objects) based on the NumElements parameter. Add an extra pointer slot
499 * so that the list is always null terminated.
501 ObjDesc
->Package
.Elements
= ACPI_ALLOCATE_ZEROED (
502 ((ACPI_SIZE
) ElementCount
+ 1) * sizeof (void *));
504 if (!ObjDesc
->Package
.Elements
)
506 AcpiUtDeleteObjectDesc (ObjDesc
);
507 return_ACPI_STATUS (AE_NO_MEMORY
);
510 ObjDesc
->Package
.Count
= ElementCount
;
513 * Initialize the elements of the package, up to the NumElements count.
514 * Package is automatically padded with uninitialized (NULL) elements
515 * if NumElements is greater than the package list length. Likewise,
516 * Package is truncated if NumElements is less than the list length.
518 Arg
= Op
->Common
.Value
.Arg
;
519 Arg
= Arg
->Common
.Next
;
520 for (i
= 0; Arg
&& (i
< ElementCount
); i
++)
522 if (Arg
->Common
.AmlOpcode
== AML_INT_RETURN_VALUE_OP
)
524 if (Arg
->Common
.Node
->Type
== ACPI_TYPE_METHOD
)
527 * A method reference "looks" to the parser to be a method
528 * invocation, so we special case it here
530 Arg
->Common
.AmlOpcode
= AML_INT_NAMEPATH_OP
;
531 Status
= AcpiDsBuildInternalObject (WalkState
, Arg
,
532 &ObjDesc
->Package
.Elements
[i
]);
536 /* This package element is already built, just get it */
538 ObjDesc
->Package
.Elements
[i
] =
539 ACPI_CAST_PTR (ACPI_OPERAND_OBJECT
, Arg
->Common
.Node
);
544 Status
= AcpiDsBuildInternalObject (WalkState
, Arg
,
545 &ObjDesc
->Package
.Elements
[i
]);
550 /* Existing package, get existing reference count */
552 ReferenceCount
= (*ObjDescPtr
)->Common
.ReferenceCount
;
553 if (ReferenceCount
> 1)
555 /* Make new element ref count match original ref count */
557 for (Index
= 0; Index
< (ReferenceCount
- 1); Index
++)
559 AcpiUtAddReference ((ObjDesc
->Package
.Elements
[i
]));
564 Arg
= Arg
->Common
.Next
;
567 /* Check for match between NumElements and actual length of PackageList */
572 * NumElements was exhausted, but there are remaining elements in the
575 * Note: technically, this is an error, from ACPI spec: "It is an error
576 * for NumElements to be less than the number of elements in the
577 * PackageList". However, for now, we just print an error message and
578 * no exception is returned.
582 /* Find out how many elements there really are */
585 Arg
= Arg
->Common
.Next
;
588 ACPI_ERROR ((AE_INFO
,
589 "Package List length (%X) larger than NumElements count (%X), truncated\n",
592 else if (i
< ElementCount
)
595 * Arg list (elements) was exhausted, but we did not reach NumElements count.
596 * Note: this is not an error, the package is padded out with NULLs.
598 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
599 "Package List length (%X) smaller than NumElements count (%X), padded with null elements\n",
603 ObjDesc
->Package
.Flags
|= AOPOBJ_DATA_VALID
;
604 Op
->Common
.Node
= ACPI_CAST_PTR (ACPI_NAMESPACE_NODE
, ObjDesc
);
605 return_ACPI_STATUS (Status
);
609 /*******************************************************************************
611 * FUNCTION: AcpiDsCreateNode
613 * PARAMETERS: WalkState - Current walk state
614 * Node - NS Node to be initialized
615 * Op - Parser object to be translated
619 * DESCRIPTION: Create the object to be associated with a namespace node
621 ******************************************************************************/
625 ACPI_WALK_STATE
*WalkState
,
626 ACPI_NAMESPACE_NODE
*Node
,
627 ACPI_PARSE_OBJECT
*Op
)
630 ACPI_OPERAND_OBJECT
*ObjDesc
;
633 ACPI_FUNCTION_TRACE_PTR (DsCreateNode
, Op
);
637 * Because of the execution pass through the non-control-method
638 * parts of the table, we can arrive here twice. Only init
639 * the named object node the first time through
641 if (AcpiNsGetAttachedObject (Node
))
643 return_ACPI_STATUS (AE_OK
);
646 if (!Op
->Common
.Value
.Arg
)
648 /* No arguments, there is nothing to do */
650 return_ACPI_STATUS (AE_OK
);
653 /* Build an internal object for the argument(s) */
655 Status
= AcpiDsBuildInternalObject (WalkState
, Op
->Common
.Value
.Arg
,
657 if (ACPI_FAILURE (Status
))
659 return_ACPI_STATUS (Status
);
662 /* Re-type the object according to its argument */
664 Node
->Type
= ObjDesc
->Common
.Type
;
666 /* Attach obj to node */
668 Status
= AcpiNsAttachObject (Node
, ObjDesc
, Node
->Type
);
670 /* Remove local reference to the object */
672 AcpiUtRemoveReference (ObjDesc
);
673 return_ACPI_STATUS (Status
);
676 #endif /* ACPI_NO_METHOD_EXECUTION */
679 /*******************************************************************************
681 * FUNCTION: AcpiDsInitObjectFromOp
683 * PARAMETERS: WalkState - Current walk state
684 * Op - Parser op used to init the internal object
685 * Opcode - AML opcode associated with the object
686 * RetObjDesc - Namespace object to be initialized
690 * DESCRIPTION: Initialize a namespace object from a parser Op and its
691 * associated arguments. The namespace object is a more compact
692 * representation of the Op and its arguments.
694 ******************************************************************************/
697 AcpiDsInitObjectFromOp (
698 ACPI_WALK_STATE
*WalkState
,
699 ACPI_PARSE_OBJECT
*Op
,
701 ACPI_OPERAND_OBJECT
**RetObjDesc
)
703 const ACPI_OPCODE_INFO
*OpInfo
;
704 ACPI_OPERAND_OBJECT
*ObjDesc
;
705 ACPI_STATUS Status
= AE_OK
;
708 ACPI_FUNCTION_TRACE (DsInitObjectFromOp
);
711 ObjDesc
= *RetObjDesc
;
712 OpInfo
= AcpiPsGetOpcodeInfo (Opcode
);
713 if (OpInfo
->Class
== AML_CLASS_UNKNOWN
)
717 return_ACPI_STATUS (AE_TYPE
);
720 /* Perform per-object initialization */
722 switch (ObjDesc
->Common
.Type
)
724 case ACPI_TYPE_BUFFER
:
727 * Defer evaluation of Buffer TermArg operand
729 ObjDesc
->Buffer
.Node
= ACPI_CAST_PTR (ACPI_NAMESPACE_NODE
,
730 WalkState
->Operands
[0]);
731 ObjDesc
->Buffer
.AmlStart
= Op
->Named
.Data
;
732 ObjDesc
->Buffer
.AmlLength
= Op
->Named
.Length
;
736 case ACPI_TYPE_PACKAGE
:
739 * Defer evaluation of Package TermArg operand
741 ObjDesc
->Package
.Node
= ACPI_CAST_PTR (ACPI_NAMESPACE_NODE
,
742 WalkState
->Operands
[0]);
743 ObjDesc
->Package
.AmlStart
= Op
->Named
.Data
;
744 ObjDesc
->Package
.AmlLength
= Op
->Named
.Length
;
748 case ACPI_TYPE_INTEGER
:
750 switch (OpInfo
->Type
)
752 case AML_TYPE_CONSTANT
:
754 * Resolve AML Constants here - AND ONLY HERE!
755 * All constants are integers.
756 * We mark the integer with a flag that indicates that it started
757 * life as a constant -- so that stores to constants will perform
758 * as expected (noop). ZeroOp is used as a placeholder for optional
761 ObjDesc
->Common
.Flags
= AOPOBJ_AML_CONSTANT
;
767 ObjDesc
->Integer
.Value
= 0;
772 ObjDesc
->Integer
.Value
= 1;
777 ObjDesc
->Integer
.Value
= ACPI_INTEGER_MAX
;
779 /* Truncate value if we are executing from a 32-bit ACPI table */
781 #ifndef ACPI_NO_METHOD_EXECUTION
782 AcpiExTruncateFor32bitTable (ObjDesc
);
786 case AML_REVISION_OP
:
788 ObjDesc
->Integer
.Value
= ACPI_CA_VERSION
;
793 ACPI_ERROR ((AE_INFO
,
794 "Unknown constant opcode %X", Opcode
));
795 Status
= AE_AML_OPERAND_TYPE
;
801 case AML_TYPE_LITERAL
:
803 ObjDesc
->Integer
.Value
= Op
->Common
.Value
.Integer
;
804 #ifndef ACPI_NO_METHOD_EXECUTION
805 AcpiExTruncateFor32bitTable (ObjDesc
);
811 ACPI_ERROR ((AE_INFO
, "Unknown Integer type %X",
813 Status
= AE_AML_OPERAND_TYPE
;
819 case ACPI_TYPE_STRING
:
821 ObjDesc
->String
.Pointer
= Op
->Common
.Value
.String
;
822 ObjDesc
->String
.Length
= (UINT32
) ACPI_STRLEN (Op
->Common
.Value
.String
);
825 * The string is contained in the ACPI table, don't ever try
828 ObjDesc
->Common
.Flags
|= AOPOBJ_STATIC_POINTER
;
832 case ACPI_TYPE_METHOD
:
836 case ACPI_TYPE_LOCAL_REFERENCE
:
838 switch (OpInfo
->Type
)
840 case AML_TYPE_LOCAL_VARIABLE
:
842 /* Local ID (0-7) is (AML opcode - base AML_LOCAL_OP) */
844 ObjDesc
->Reference
.Value
= ((UINT32
) Opcode
) - AML_LOCAL_OP
;
845 ObjDesc
->Reference
.Class
= ACPI_REFCLASS_LOCAL
;
847 #ifndef ACPI_NO_METHOD_EXECUTION
848 Status
= AcpiDsMethodDataGetNode (ACPI_REFCLASS_LOCAL
,
849 ObjDesc
->Reference
.Value
, WalkState
,
850 ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE
,
851 &ObjDesc
->Reference
.Object
));
856 case AML_TYPE_METHOD_ARGUMENT
:
858 /* Arg ID (0-6) is (AML opcode - base AML_ARG_OP) */
860 ObjDesc
->Reference
.Value
= ((UINT32
) Opcode
) - AML_ARG_OP
;
861 ObjDesc
->Reference
.Class
= ACPI_REFCLASS_ARG
;
863 #ifndef ACPI_NO_METHOD_EXECUTION
864 Status
= AcpiDsMethodDataGetNode (ACPI_REFCLASS_ARG
,
865 ObjDesc
->Reference
.Value
, WalkState
,
866 ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE
,
867 &ObjDesc
->Reference
.Object
));
871 default: /* Object name or Debug object */
873 switch (Op
->Common
.AmlOpcode
)
875 case AML_INT_NAMEPATH_OP
:
877 /* Node was saved in Op */
879 ObjDesc
->Reference
.Node
= Op
->Common
.Node
;
880 ObjDesc
->Reference
.Object
= Op
->Common
.Node
->Object
;
881 ObjDesc
->Reference
.Class
= ACPI_REFCLASS_NAME
;
886 ObjDesc
->Reference
.Class
= ACPI_REFCLASS_DEBUG
;
891 ACPI_ERROR ((AE_INFO
,
892 "Unimplemented reference type for AML opcode: %4.4X", Opcode
));
893 return_ACPI_STATUS (AE_AML_OPERAND_TYPE
);
902 ACPI_ERROR ((AE_INFO
, "Unimplemented data type: %X",
903 ObjDesc
->Common
.Type
));
905 Status
= AE_AML_OPERAND_TYPE
;
909 return_ACPI_STATUS (Status
);