1 /******************************************************************************
3 * Module Name: exresolv - AML Interpreter object resolution
5 *****************************************************************************/
7 /******************************************************************************
11 * Some or all of this work - Copyright (c) 1999 - 2014, 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 __EXRESOLV_C__
119 #include "accommon.h"
121 #include "acdispat.h"
122 #include "acinterp.h"
123 #include "acnamesp.h"
126 #define _COMPONENT ACPI_EXECUTER
127 ACPI_MODULE_NAME ("exresolv")
129 /* Local prototypes */
132 AcpiExResolveObjectToValue (
133 ACPI_OPERAND_OBJECT
**StackPtr
,
134 ACPI_WALK_STATE
*WalkState
);
137 /*******************************************************************************
139 * FUNCTION: AcpiExResolveToValue
141 * PARAMETERS: **StackPtr - Points to entry on ObjStack, which can
142 * be either an (ACPI_OPERAND_OBJECT *)
144 * WalkState - Current method state
148 * DESCRIPTION: Convert Reference objects to values
150 ******************************************************************************/
153 AcpiExResolveToValue (
154 ACPI_OPERAND_OBJECT
**StackPtr
,
155 ACPI_WALK_STATE
*WalkState
)
160 ACPI_FUNCTION_TRACE_PTR (ExResolveToValue
, StackPtr
);
163 if (!StackPtr
|| !*StackPtr
)
165 ACPI_ERROR ((AE_INFO
, "Internal - null pointer"));
166 return_ACPI_STATUS (AE_AML_NO_OPERAND
);
170 * The entity pointed to by the StackPtr can be either
171 * 1) A valid ACPI_OPERAND_OBJECT, or
172 * 2) A ACPI_NAMESPACE_NODE (NamedObj)
174 if (ACPI_GET_DESCRIPTOR_TYPE (*StackPtr
) == ACPI_DESC_TYPE_OPERAND
)
176 Status
= AcpiExResolveObjectToValue (StackPtr
, WalkState
);
177 if (ACPI_FAILURE (Status
))
179 return_ACPI_STATUS (Status
);
184 ACPI_ERROR ((AE_INFO
, "Internal - null pointer"));
185 return_ACPI_STATUS (AE_AML_NO_OPERAND
);
190 * Object on the stack may have changed if AcpiExResolveObjectToValue()
191 * was called (i.e., we can't use an _else_ here.)
193 if (ACPI_GET_DESCRIPTOR_TYPE (*StackPtr
) == ACPI_DESC_TYPE_NAMED
)
195 Status
= AcpiExResolveNodeToValue (
196 ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE
, StackPtr
),
198 if (ACPI_FAILURE (Status
))
200 return_ACPI_STATUS (Status
);
204 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "Resolved object %p\n", *StackPtr
));
205 return_ACPI_STATUS (AE_OK
);
209 /*******************************************************************************
211 * FUNCTION: AcpiExResolveObjectToValue
213 * PARAMETERS: StackPtr - Pointer to an internal object
214 * WalkState - Current method state
218 * DESCRIPTION: Retrieve the value from an internal object. The Reference type
219 * uses the associated AML opcode to determine the value.
221 ******************************************************************************/
224 AcpiExResolveObjectToValue (
225 ACPI_OPERAND_OBJECT
**StackPtr
,
226 ACPI_WALK_STATE
*WalkState
)
228 ACPI_STATUS Status
= AE_OK
;
229 ACPI_OPERAND_OBJECT
*StackDesc
;
230 ACPI_OPERAND_OBJECT
*ObjDesc
= NULL
;
234 ACPI_FUNCTION_TRACE (ExResolveObjectToValue
);
237 StackDesc
= *StackPtr
;
239 /* This is an object of type ACPI_OPERAND_OBJECT */
241 switch (StackDesc
->Common
.Type
)
243 case ACPI_TYPE_LOCAL_REFERENCE
:
245 RefType
= StackDesc
->Reference
.Class
;
249 case ACPI_REFCLASS_LOCAL
:
250 case ACPI_REFCLASS_ARG
:
252 * Get the local from the method's state info
253 * Note: this increments the local's object reference count
255 Status
= AcpiDsMethodDataGetValue (RefType
,
256 StackDesc
->Reference
.Value
, WalkState
, &ObjDesc
);
257 if (ACPI_FAILURE (Status
))
259 return_ACPI_STATUS (Status
);
262 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "[Arg/Local %X] ValueObj is %p\n",
263 StackDesc
->Reference
.Value
, ObjDesc
));
266 * Now we can delete the original Reference Object and
267 * replace it with the resolved value
269 AcpiUtRemoveReference (StackDesc
);
273 case ACPI_REFCLASS_INDEX
:
275 switch (StackDesc
->Reference
.TargetType
)
277 case ACPI_TYPE_BUFFER_FIELD
:
279 /* Just return - do not dereference */
282 case ACPI_TYPE_PACKAGE
:
284 /* If method call or CopyObject - do not dereference */
286 if ((WalkState
->Opcode
== AML_INT_METHODCALL_OP
) ||
287 (WalkState
->Opcode
== AML_COPY_OP
))
292 /* Otherwise, dereference the PackageIndex to a package element */
294 ObjDesc
= *StackDesc
->Reference
.Where
;
298 * Valid object descriptor, copy pointer to return value
299 * (i.e., dereference the package index)
300 * Delete the ref object, increment the returned object
302 AcpiUtRemoveReference (StackDesc
);
303 AcpiUtAddReference (ObjDesc
);
309 * A NULL object descriptor means an uninitialized element of
310 * the package, can't dereference it
312 ACPI_ERROR ((AE_INFO
,
313 "Attempt to dereference an Index to NULL package element Idx=%p",
315 Status
= AE_AML_UNINITIALIZED_ELEMENT
;
321 /* Invalid reference object */
323 ACPI_ERROR ((AE_INFO
,
324 "Unknown TargetType 0x%X in Index/Reference object %p",
325 StackDesc
->Reference
.TargetType
, StackDesc
));
326 Status
= AE_AML_INTERNAL
;
331 case ACPI_REFCLASS_REFOF
:
332 case ACPI_REFCLASS_DEBUG
:
333 case ACPI_REFCLASS_TABLE
:
335 /* Just leave the object as-is, do not dereference */
339 case ACPI_REFCLASS_NAME
: /* Reference to a named object */
341 /* Dereference the name */
343 if ((StackDesc
->Reference
.Node
->Type
== ACPI_TYPE_DEVICE
) ||
344 (StackDesc
->Reference
.Node
->Type
== ACPI_TYPE_THERMAL
))
346 /* These node types do not have 'real' subobjects */
348 *StackPtr
= (void *) StackDesc
->Reference
.Node
;
352 /* Get the object pointed to by the namespace node */
354 *StackPtr
= (StackDesc
->Reference
.Node
)->Object
;
355 AcpiUtAddReference (*StackPtr
);
358 AcpiUtRemoveReference (StackDesc
);
363 ACPI_ERROR ((AE_INFO
,
364 "Unknown Reference type 0x%X in %p", RefType
, StackDesc
));
365 Status
= AE_AML_INTERNAL
;
370 case ACPI_TYPE_BUFFER
:
372 Status
= AcpiDsGetBufferArguments (StackDesc
);
375 case ACPI_TYPE_PACKAGE
:
377 Status
= AcpiDsGetPackageArguments (StackDesc
);
380 case ACPI_TYPE_BUFFER_FIELD
:
381 case ACPI_TYPE_LOCAL_REGION_FIELD
:
382 case ACPI_TYPE_LOCAL_BANK_FIELD
:
383 case ACPI_TYPE_LOCAL_INDEX_FIELD
:
385 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "FieldRead SourceDesc=%p Type=%X\n",
386 StackDesc
, StackDesc
->Common
.Type
));
388 Status
= AcpiExReadDataFromField (WalkState
, StackDesc
, &ObjDesc
);
390 /* Remove a reference to the original operand, then override */
392 AcpiUtRemoveReference (*StackPtr
);
393 *StackPtr
= (void *) ObjDesc
;
401 return_ACPI_STATUS (Status
);
405 /*******************************************************************************
407 * FUNCTION: AcpiExResolveMultiple
409 * PARAMETERS: WalkState - Current state (contains AML opcode)
410 * Operand - Starting point for resolution
411 * ReturnType - Where the object type is returned
412 * ReturnDesc - Where the resolved object is returned
416 * DESCRIPTION: Return the base object and type. Traverse a reference list if
417 * necessary to get to the base object.
419 ******************************************************************************/
422 AcpiExResolveMultiple (
423 ACPI_WALK_STATE
*WalkState
,
424 ACPI_OPERAND_OBJECT
*Operand
,
425 ACPI_OBJECT_TYPE
*ReturnType
,
426 ACPI_OPERAND_OBJECT
**ReturnDesc
)
428 ACPI_OPERAND_OBJECT
*ObjDesc
= (void *) Operand
;
429 ACPI_NAMESPACE_NODE
*Node
;
430 ACPI_OBJECT_TYPE Type
;
434 ACPI_FUNCTION_TRACE (AcpiExResolveMultiple
);
437 /* Operand can be either a namespace node or an operand descriptor */
439 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc
))
441 case ACPI_DESC_TYPE_OPERAND
:
443 Type
= ObjDesc
->Common
.Type
;
446 case ACPI_DESC_TYPE_NAMED
:
448 Type
= ((ACPI_NAMESPACE_NODE
*) ObjDesc
)->Type
;
449 ObjDesc
= AcpiNsGetAttachedObject ((ACPI_NAMESPACE_NODE
*) ObjDesc
);
451 /* If we had an Alias node, use the attached object for type info */
453 if (Type
== ACPI_TYPE_LOCAL_ALIAS
)
455 Type
= ((ACPI_NAMESPACE_NODE
*) ObjDesc
)->Type
;
456 ObjDesc
= AcpiNsGetAttachedObject ((ACPI_NAMESPACE_NODE
*) ObjDesc
);
461 return_ACPI_STATUS (AE_AML_OPERAND_TYPE
);
464 /* If type is anything other than a reference, we are done */
466 if (Type
!= ACPI_TYPE_LOCAL_REFERENCE
)
472 * For reference objects created via the RefOf, Index, or Load/LoadTable
473 * operators, we need to get to the base object (as per the ACPI
474 * specification of the ObjectType and SizeOf operators). This means
475 * traversing the list of possibly many nested references.
477 while (ObjDesc
->Common
.Type
== ACPI_TYPE_LOCAL_REFERENCE
)
479 switch (ObjDesc
->Reference
.Class
)
481 case ACPI_REFCLASS_REFOF
:
482 case ACPI_REFCLASS_NAME
:
484 /* Dereference the reference pointer */
486 if (ObjDesc
->Reference
.Class
== ACPI_REFCLASS_REFOF
)
488 Node
= ObjDesc
->Reference
.Object
;
490 else /* AML_INT_NAMEPATH_OP */
492 Node
= ObjDesc
->Reference
.Node
;
495 /* All "References" point to a NS node */
497 if (ACPI_GET_DESCRIPTOR_TYPE (Node
) != ACPI_DESC_TYPE_NAMED
)
499 ACPI_ERROR ((AE_INFO
,
500 "Not a namespace node %p [%s]",
501 Node
, AcpiUtGetDescriptorName (Node
)));
502 return_ACPI_STATUS (AE_AML_INTERNAL
);
505 /* Get the attached object */
507 ObjDesc
= AcpiNsGetAttachedObject (Node
);
510 /* No object, use the NS node type */
512 Type
= AcpiNsGetType (Node
);
516 /* Check for circular references */
518 if (ObjDesc
== Operand
)
520 return_ACPI_STATUS (AE_AML_CIRCULAR_REFERENCE
);
524 case ACPI_REFCLASS_INDEX
:
526 /* Get the type of this reference (index into another object) */
528 Type
= ObjDesc
->Reference
.TargetType
;
529 if (Type
!= ACPI_TYPE_PACKAGE
)
535 * The main object is a package, we want to get the type
536 * of the individual package element that is referenced by
539 * This could of course in turn be another reference object.
541 ObjDesc
= *(ObjDesc
->Reference
.Where
);
544 /* NULL package elements are allowed */
546 Type
= 0; /* Uninitialized */
551 case ACPI_REFCLASS_TABLE
:
553 Type
= ACPI_TYPE_DDB_HANDLE
;
556 case ACPI_REFCLASS_LOCAL
:
557 case ACPI_REFCLASS_ARG
:
561 Status
= AcpiDsMethodDataGetValue (ObjDesc
->Reference
.Class
,
562 ObjDesc
->Reference
.Value
, WalkState
, &ObjDesc
);
563 if (ACPI_FAILURE (Status
))
565 return_ACPI_STATUS (Status
);
567 AcpiUtRemoveReference (ObjDesc
);
571 Status
= AcpiDsMethodDataGetNode (ObjDesc
->Reference
.Class
,
572 ObjDesc
->Reference
.Value
, WalkState
, &Node
);
573 if (ACPI_FAILURE (Status
))
575 return_ACPI_STATUS (Status
);
578 ObjDesc
= AcpiNsGetAttachedObject (Node
);
581 Type
= ACPI_TYPE_ANY
;
587 case ACPI_REFCLASS_DEBUG
:
589 /* The Debug Object is of type "DebugObject" */
591 Type
= ACPI_TYPE_DEBUG_OBJECT
;
596 ACPI_ERROR ((AE_INFO
,
597 "Unknown Reference Class 0x%2.2X", ObjDesc
->Reference
.Class
));
598 return_ACPI_STATUS (AE_AML_INTERNAL
);
603 * Now we are guaranteed to have an object that has not been created
604 * via the RefOf or Index operators.
606 Type
= ObjDesc
->Common
.Type
;
610 /* Convert internal types to external types */
614 case ACPI_TYPE_LOCAL_REGION_FIELD
:
615 case ACPI_TYPE_LOCAL_BANK_FIELD
:
616 case ACPI_TYPE_LOCAL_INDEX_FIELD
:
618 Type
= ACPI_TYPE_FIELD_UNIT
;
621 case ACPI_TYPE_LOCAL_SCOPE
:
623 /* Per ACPI Specification, Scope is untyped */
625 Type
= ACPI_TYPE_ANY
;
630 /* No change to Type required */
638 *ReturnDesc
= ObjDesc
;
640 return_ACPI_STATUS (AE_OK
);