1 /******************************************************************************
3 * Module Name: dsopcode - Dispatcher support for regions and fields
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 __DSOPCODE_C__
119 #include "accommon.h"
120 #include "acparser.h"
122 #include "acdispat.h"
123 #include "acinterp.h"
124 #include "acnamesp.h"
125 #include "acevents.h"
126 #include "actables.h"
128 #define _COMPONENT ACPI_DISPATCHER
129 ACPI_MODULE_NAME ("dsopcode")
131 /* Local prototypes */
134 AcpiDsInitBufferField (
136 ACPI_OPERAND_OBJECT
*ObjDesc
,
137 ACPI_OPERAND_OBJECT
*BufferDesc
,
138 ACPI_OPERAND_OBJECT
*OffsetDesc
,
139 ACPI_OPERAND_OBJECT
*LengthDesc
,
140 ACPI_OPERAND_OBJECT
*ResultDesc
);
143 /*******************************************************************************
145 * FUNCTION: AcpiDsInitializeRegion
147 * PARAMETERS: ObjHandle - Region namespace node
151 * DESCRIPTION: Front end to EvInitializeRegion
153 ******************************************************************************/
156 AcpiDsInitializeRegion (
157 ACPI_HANDLE ObjHandle
)
159 ACPI_OPERAND_OBJECT
*ObjDesc
;
163 ObjDesc
= AcpiNsGetAttachedObject (ObjHandle
);
165 /* Namespace is NOT locked */
167 Status
= AcpiEvInitializeRegion (ObjDesc
, FALSE
);
172 /*******************************************************************************
174 * FUNCTION: AcpiDsInitBufferField
176 * PARAMETERS: AmlOpcode - CreateXxxField
177 * ObjDesc - BufferField object
178 * BufferDesc - Host Buffer
179 * OffsetDesc - Offset into buffer
180 * LengthDesc - Length of field (CREATE_FIELD_OP only)
181 * ResultDesc - Where to store the result
185 * DESCRIPTION: Perform actual initialization of a buffer field
187 ******************************************************************************/
190 AcpiDsInitBufferField (
192 ACPI_OPERAND_OBJECT
*ObjDesc
,
193 ACPI_OPERAND_OBJECT
*BufferDesc
,
194 ACPI_OPERAND_OBJECT
*OffsetDesc
,
195 ACPI_OPERAND_OBJECT
*LengthDesc
,
196 ACPI_OPERAND_OBJECT
*ResultDesc
)
205 ACPI_FUNCTION_TRACE_PTR (DsInitBufferField
, ObjDesc
);
208 /* Host object must be a Buffer */
210 if (BufferDesc
->Common
.Type
!= ACPI_TYPE_BUFFER
)
212 ACPI_ERROR ((AE_INFO
,
213 "Target of Create Field is not a Buffer object - %s",
214 AcpiUtGetObjectTypeName (BufferDesc
)));
216 Status
= AE_AML_OPERAND_TYPE
;
221 * The last parameter to all of these opcodes (ResultDesc) started
222 * out as a NameString, and should therefore now be a NS node
223 * after resolution in AcpiExResolveOperands().
225 if (ACPI_GET_DESCRIPTOR_TYPE (ResultDesc
) != ACPI_DESC_TYPE_NAMED
)
227 ACPI_ERROR ((AE_INFO
,
228 "(%s) destination not a NS Node [%s]",
229 AcpiPsGetOpcodeName (AmlOpcode
),
230 AcpiUtGetDescriptorName (ResultDesc
)));
232 Status
= AE_AML_OPERAND_TYPE
;
236 Offset
= (UINT32
) OffsetDesc
->Integer
.Value
;
239 * Setup the Bit offsets and counts, according to the opcode
243 case AML_CREATE_FIELD_OP
:
245 /* Offset is in bits, count is in bits */
247 FieldFlags
= AML_FIELD_ACCESS_BYTE
;
249 BitCount
= (UINT32
) LengthDesc
->Integer
.Value
;
251 /* Must have a valid (>0) bit count */
255 ACPI_ERROR ((AE_INFO
,
256 "Attempt to CreateField of length zero"));
257 Status
= AE_AML_OPERAND_VALUE
;
262 case AML_CREATE_BIT_FIELD_OP
:
264 /* Offset is in bits, Field is one bit */
268 FieldFlags
= AML_FIELD_ACCESS_BYTE
;
271 case AML_CREATE_BYTE_FIELD_OP
:
273 /* Offset is in bytes, field is one byte */
275 BitOffset
= 8 * Offset
;
277 FieldFlags
= AML_FIELD_ACCESS_BYTE
;
280 case AML_CREATE_WORD_FIELD_OP
:
282 /* Offset is in bytes, field is one word */
284 BitOffset
= 8 * Offset
;
286 FieldFlags
= AML_FIELD_ACCESS_WORD
;
289 case AML_CREATE_DWORD_FIELD_OP
:
291 /* Offset is in bytes, field is one dword */
293 BitOffset
= 8 * Offset
;
295 FieldFlags
= AML_FIELD_ACCESS_DWORD
;
298 case AML_CREATE_QWORD_FIELD_OP
:
300 /* Offset is in bytes, field is one qword */
302 BitOffset
= 8 * Offset
;
304 FieldFlags
= AML_FIELD_ACCESS_QWORD
;
309 ACPI_ERROR ((AE_INFO
,
310 "Unknown field creation opcode 0x%02X",
312 Status
= AE_AML_BAD_OPCODE
;
316 /* Entire field must fit within the current length of the buffer */
318 if ((BitOffset
+ BitCount
) >
319 (8 * (UINT32
) BufferDesc
->Buffer
.Length
))
321 ACPI_ERROR ((AE_INFO
,
322 "Field [%4.4s] at %u exceeds Buffer [%4.4s] size %u (bits)",
323 AcpiUtGetNodeName (ResultDesc
),
324 BitOffset
+ BitCount
,
325 AcpiUtGetNodeName (BufferDesc
->Buffer
.Node
),
326 8 * (UINT32
) BufferDesc
->Buffer
.Length
));
327 Status
= AE_AML_BUFFER_LIMIT
;
332 * Initialize areas of the field object that are common to all fields
333 * For FieldFlags, use LOCK_RULE = 0 (NO_LOCK),
334 * UPDATE_RULE = 0 (UPDATE_PRESERVE)
336 Status
= AcpiExPrepCommonFieldObject (ObjDesc
, FieldFlags
, 0,
337 BitOffset
, BitCount
);
338 if (ACPI_FAILURE (Status
))
343 ObjDesc
->BufferField
.BufferObj
= BufferDesc
;
345 /* Reference count for BufferDesc inherits ObjDesc count */
347 BufferDesc
->Common
.ReferenceCount
= (UINT16
)
348 (BufferDesc
->Common
.ReferenceCount
+ ObjDesc
->Common
.ReferenceCount
);
353 /* Always delete the operands */
355 AcpiUtRemoveReference (OffsetDesc
);
356 AcpiUtRemoveReference (BufferDesc
);
358 if (AmlOpcode
== AML_CREATE_FIELD_OP
)
360 AcpiUtRemoveReference (LengthDesc
);
363 /* On failure, delete the result descriptor */
365 if (ACPI_FAILURE (Status
))
367 AcpiUtRemoveReference (ResultDesc
); /* Result descriptor */
371 /* Now the address and length are valid for this BufferField */
373 ObjDesc
->BufferField
.Flags
|= AOPOBJ_DATA_VALID
;
376 return_ACPI_STATUS (Status
);
380 /*******************************************************************************
382 * FUNCTION: AcpiDsEvalBufferFieldOperands
384 * PARAMETERS: WalkState - Current walk
385 * Op - A valid BufferField Op object
389 * DESCRIPTION: Get BufferField Buffer and Index
390 * Called from AcpiDsExecEndOp during BufferField parse tree walk
392 ******************************************************************************/
395 AcpiDsEvalBufferFieldOperands (
396 ACPI_WALK_STATE
*WalkState
,
397 ACPI_PARSE_OBJECT
*Op
)
400 ACPI_OPERAND_OBJECT
*ObjDesc
;
401 ACPI_NAMESPACE_NODE
*Node
;
402 ACPI_PARSE_OBJECT
*NextOp
;
405 ACPI_FUNCTION_TRACE_PTR (DsEvalBufferFieldOperands
, Op
);
409 * This is where we evaluate the address and length fields of the
410 * CreateXxxField declaration
412 Node
= Op
->Common
.Node
;
414 /* NextOp points to the op that holds the Buffer */
416 NextOp
= Op
->Common
.Value
.Arg
;
418 /* Evaluate/create the address and length operands */
420 Status
= AcpiDsCreateOperands (WalkState
, NextOp
);
421 if (ACPI_FAILURE (Status
))
423 return_ACPI_STATUS (Status
);
426 ObjDesc
= AcpiNsGetAttachedObject (Node
);
429 return_ACPI_STATUS (AE_NOT_EXIST
);
432 /* Resolve the operands */
434 Status
= AcpiExResolveOperands (Op
->Common
.AmlOpcode
,
435 ACPI_WALK_OPERANDS
, WalkState
);
436 if (ACPI_FAILURE (Status
))
438 ACPI_ERROR ((AE_INFO
, "(%s) bad operand(s), status 0x%X",
439 AcpiPsGetOpcodeName (Op
->Common
.AmlOpcode
), Status
));
441 return_ACPI_STATUS (Status
);
444 /* Initialize the Buffer Field */
446 if (Op
->Common
.AmlOpcode
== AML_CREATE_FIELD_OP
)
448 /* NOTE: Slightly different operands for this opcode */
450 Status
= AcpiDsInitBufferField (Op
->Common
.AmlOpcode
, ObjDesc
,
451 WalkState
->Operands
[0], WalkState
->Operands
[1],
452 WalkState
->Operands
[2], WalkState
->Operands
[3]);
456 /* All other, CreateXxxField opcodes */
458 Status
= AcpiDsInitBufferField (Op
->Common
.AmlOpcode
, ObjDesc
,
459 WalkState
->Operands
[0], WalkState
->Operands
[1],
460 NULL
, WalkState
->Operands
[2]);
463 return_ACPI_STATUS (Status
);
467 /*******************************************************************************
469 * FUNCTION: AcpiDsEvalRegionOperands
471 * PARAMETERS: WalkState - Current walk
472 * Op - A valid region Op object
476 * DESCRIPTION: Get region address and length
477 * Called from AcpiDsExecEndOp during OpRegion parse tree walk
479 ******************************************************************************/
482 AcpiDsEvalRegionOperands (
483 ACPI_WALK_STATE
*WalkState
,
484 ACPI_PARSE_OBJECT
*Op
)
487 ACPI_OPERAND_OBJECT
*ObjDesc
;
488 ACPI_OPERAND_OBJECT
*OperandDesc
;
489 ACPI_NAMESPACE_NODE
*Node
;
490 ACPI_PARSE_OBJECT
*NextOp
;
493 ACPI_FUNCTION_TRACE_PTR (DsEvalRegionOperands
, Op
);
497 * This is where we evaluate the address and length fields of the
498 * OpRegion declaration
500 Node
= Op
->Common
.Node
;
502 /* NextOp points to the op that holds the SpaceID */
504 NextOp
= Op
->Common
.Value
.Arg
;
506 /* NextOp points to address op */
508 NextOp
= NextOp
->Common
.Next
;
510 /* Evaluate/create the address and length operands */
512 Status
= AcpiDsCreateOperands (WalkState
, NextOp
);
513 if (ACPI_FAILURE (Status
))
515 return_ACPI_STATUS (Status
);
518 /* Resolve the length and address operands to numbers */
520 Status
= AcpiExResolveOperands (Op
->Common
.AmlOpcode
,
521 ACPI_WALK_OPERANDS
, WalkState
);
522 if (ACPI_FAILURE (Status
))
524 return_ACPI_STATUS (Status
);
527 ObjDesc
= AcpiNsGetAttachedObject (Node
);
530 return_ACPI_STATUS (AE_NOT_EXIST
);
534 * Get the length operand and save it
537 OperandDesc
= WalkState
->Operands
[WalkState
->NumOperands
- 1];
539 ObjDesc
->Region
.Length
= (UINT32
) OperandDesc
->Integer
.Value
;
540 AcpiUtRemoveReference (OperandDesc
);
543 * Get the address and save it
544 * (at top of stack - 1)
546 OperandDesc
= WalkState
->Operands
[WalkState
->NumOperands
- 2];
548 ObjDesc
->Region
.Address
= (ACPI_PHYSICAL_ADDRESS
)
549 OperandDesc
->Integer
.Value
;
550 AcpiUtRemoveReference (OperandDesc
);
552 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "RgnObj %p Addr %8.8X%8.8X Len %X\n",
554 ACPI_FORMAT_NATIVE_UINT (ObjDesc
->Region
.Address
),
555 ObjDesc
->Region
.Length
));
557 /* Now the address and length are valid for this opregion */
559 ObjDesc
->Region
.Flags
|= AOPOBJ_DATA_VALID
;
561 return_ACPI_STATUS (Status
);
565 /*******************************************************************************
567 * FUNCTION: AcpiDsEvalTableRegionOperands
569 * PARAMETERS: WalkState - Current walk
570 * Op - A valid region Op object
574 * DESCRIPTION: Get region address and length.
575 * Called from AcpiDsExecEndOp during DataTableRegion parse
578 ******************************************************************************/
581 AcpiDsEvalTableRegionOperands (
582 ACPI_WALK_STATE
*WalkState
,
583 ACPI_PARSE_OBJECT
*Op
)
586 ACPI_OPERAND_OBJECT
*ObjDesc
;
587 ACPI_OPERAND_OBJECT
**Operand
;
588 ACPI_NAMESPACE_NODE
*Node
;
589 ACPI_PARSE_OBJECT
*NextOp
;
591 ACPI_TABLE_HEADER
*Table
;
594 ACPI_FUNCTION_TRACE_PTR (DsEvalTableRegionOperands
, Op
);
598 * This is where we evaluate the Signature string, OemId string,
599 * and OemTableId string of the Data Table Region declaration
601 Node
= Op
->Common
.Node
;
603 /* NextOp points to Signature string op */
605 NextOp
= Op
->Common
.Value
.Arg
;
608 * Evaluate/create the Signature string, OemId string,
609 * and OemTableId string operands
611 Status
= AcpiDsCreateOperands (WalkState
, NextOp
);
612 if (ACPI_FAILURE (Status
))
614 return_ACPI_STATUS (Status
);
618 * Resolve the Signature string, OemId string,
619 * and OemTableId string operands
621 Status
= AcpiExResolveOperands (Op
->Common
.AmlOpcode
,
622 ACPI_WALK_OPERANDS
, WalkState
);
623 if (ACPI_FAILURE (Status
))
625 return_ACPI_STATUS (Status
);
628 Operand
= &WalkState
->Operands
[0];
630 /* Find the ACPI table */
632 Status
= AcpiTbFindTable (Operand
[0]->String
.Pointer
,
633 Operand
[1]->String
.Pointer
, Operand
[2]->String
.Pointer
,
635 if (ACPI_FAILURE (Status
))
637 return_ACPI_STATUS (Status
);
640 AcpiUtRemoveReference (Operand
[0]);
641 AcpiUtRemoveReference (Operand
[1]);
642 AcpiUtRemoveReference (Operand
[2]);
644 Status
= AcpiGetTableByIndex (TableIndex
, &Table
);
645 if (ACPI_FAILURE (Status
))
647 return_ACPI_STATUS (Status
);
650 ObjDesc
= AcpiNsGetAttachedObject (Node
);
653 return_ACPI_STATUS (AE_NOT_EXIST
);
656 ObjDesc
->Region
.Address
= (ACPI_PHYSICAL_ADDRESS
) ACPI_TO_INTEGER (Table
);
657 ObjDesc
->Region
.Length
= Table
->Length
;
659 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC
, "RgnObj %p Addr %8.8X%8.8X Len %X\n",
661 ACPI_FORMAT_NATIVE_UINT (ObjDesc
->Region
.Address
),
662 ObjDesc
->Region
.Length
));
664 /* Now the address and length are valid for this opregion */
666 ObjDesc
->Region
.Flags
|= AOPOBJ_DATA_VALID
;
668 return_ACPI_STATUS (Status
);
672 /*******************************************************************************
674 * FUNCTION: AcpiDsEvalDataObjectOperands
676 * PARAMETERS: WalkState - Current walk
677 * Op - A valid DataObject Op object
678 * ObjDesc - DataObject
682 * DESCRIPTION: Get the operands and complete the following data object types:
685 ******************************************************************************/
688 AcpiDsEvalDataObjectOperands (
689 ACPI_WALK_STATE
*WalkState
,
690 ACPI_PARSE_OBJECT
*Op
,
691 ACPI_OPERAND_OBJECT
*ObjDesc
)
694 ACPI_OPERAND_OBJECT
*ArgDesc
;
698 ACPI_FUNCTION_TRACE (DsEvalDataObjectOperands
);
701 /* The first operand (for all of these data objects) is the length */
704 * Set proper index into operand stack for AcpiDsObjStackPush
705 * invoked inside AcpiDsCreateOperand.
707 WalkState
->OperandIndex
= WalkState
->NumOperands
;
709 Status
= AcpiDsCreateOperand (WalkState
, Op
->Common
.Value
.Arg
, 1);
710 if (ACPI_FAILURE (Status
))
712 return_ACPI_STATUS (Status
);
715 Status
= AcpiExResolveOperands (WalkState
->Opcode
,
716 &(WalkState
->Operands
[WalkState
->NumOperands
-1]),
718 if (ACPI_FAILURE (Status
))
720 return_ACPI_STATUS (Status
);
723 /* Extract length operand */
725 ArgDesc
= WalkState
->Operands
[WalkState
->NumOperands
- 1];
726 Length
= (UINT32
) ArgDesc
->Integer
.Value
;
728 /* Cleanup for length operand */
730 Status
= AcpiDsObjStackPop (1, WalkState
);
731 if (ACPI_FAILURE (Status
))
733 return_ACPI_STATUS (Status
);
736 AcpiUtRemoveReference (ArgDesc
);
739 * Create the actual data object
741 switch (Op
->Common
.AmlOpcode
)
745 Status
= AcpiDsBuildInternalBufferObj (WalkState
, Op
, Length
, &ObjDesc
);
749 case AML_VAR_PACKAGE_OP
:
751 Status
= AcpiDsBuildInternalPackageObj (WalkState
, Op
, Length
, &ObjDesc
);
756 return_ACPI_STATUS (AE_AML_BAD_OPCODE
);
759 if (ACPI_SUCCESS (Status
))
762 * Return the object in the WalkState, unless the parent is a package -
763 * in this case, the return object will be stored in the parse tree
766 if ((!Op
->Common
.Parent
) ||
767 ((Op
->Common
.Parent
->Common
.AmlOpcode
!= AML_PACKAGE_OP
) &&
768 (Op
->Common
.Parent
->Common
.AmlOpcode
!= AML_VAR_PACKAGE_OP
) &&
769 (Op
->Common
.Parent
->Common
.AmlOpcode
!= AML_NAME_OP
)))
771 WalkState
->ResultObj
= ObjDesc
;
775 return_ACPI_STATUS (Status
);
779 /*******************************************************************************
781 * FUNCTION: AcpiDsEvalBankFieldOperands
783 * PARAMETERS: WalkState - Current walk
784 * Op - A valid BankField Op object
788 * DESCRIPTION: Get BankField BankValue
789 * Called from AcpiDsExecEndOp during BankField parse tree walk
791 ******************************************************************************/
794 AcpiDsEvalBankFieldOperands (
795 ACPI_WALK_STATE
*WalkState
,
796 ACPI_PARSE_OBJECT
*Op
)
799 ACPI_OPERAND_OBJECT
*ObjDesc
;
800 ACPI_OPERAND_OBJECT
*OperandDesc
;
801 ACPI_NAMESPACE_NODE
*Node
;
802 ACPI_PARSE_OBJECT
*NextOp
;
803 ACPI_PARSE_OBJECT
*Arg
;
806 ACPI_FUNCTION_TRACE_PTR (DsEvalBankFieldOperands
, Op
);
810 * This is where we evaluate the BankValue field of the
811 * BankField declaration
814 /* NextOp points to the op that holds the Region */
816 NextOp
= Op
->Common
.Value
.Arg
;
818 /* NextOp points to the op that holds the Bank Register */
820 NextOp
= NextOp
->Common
.Next
;
822 /* NextOp points to the op that holds the Bank Value */
824 NextOp
= NextOp
->Common
.Next
;
827 * Set proper index into operand stack for AcpiDsObjStackPush
828 * invoked inside AcpiDsCreateOperand.
830 * We use WalkState->Operands[0] to store the evaluated BankValue
832 WalkState
->OperandIndex
= 0;
834 Status
= AcpiDsCreateOperand (WalkState
, NextOp
, 0);
835 if (ACPI_FAILURE (Status
))
837 return_ACPI_STATUS (Status
);
840 Status
= AcpiExResolveToValue (&WalkState
->Operands
[0], WalkState
);
841 if (ACPI_FAILURE (Status
))
843 return_ACPI_STATUS (Status
);
846 ACPI_DUMP_OPERANDS (ACPI_WALK_OPERANDS
,
847 AcpiPsGetOpcodeName (Op
->Common
.AmlOpcode
), 1);
849 * Get the BankValue operand and save it
852 OperandDesc
= WalkState
->Operands
[0];
854 /* Arg points to the start Bank Field */
856 Arg
= AcpiPsGetArg (Op
, 4);
859 /* Ignore OFFSET and ACCESSAS terms here */
861 if (Arg
->Common
.AmlOpcode
== AML_INT_NAMEDFIELD_OP
)
863 Node
= Arg
->Common
.Node
;
865 ObjDesc
= AcpiNsGetAttachedObject (Node
);
868 return_ACPI_STATUS (AE_NOT_EXIST
);
871 ObjDesc
->BankField
.Value
= (UINT32
) OperandDesc
->Integer
.Value
;
874 /* Move to next field in the list */
876 Arg
= Arg
->Common
.Next
;
879 AcpiUtRemoveReference (OperandDesc
);
880 return_ACPI_STATUS (Status
);