Home | History | Annotate | Line # | Download | only in dispatcher
dsargs.c revision 1.1.1.14.6.1
      1           1.1    jruoho /******************************************************************************
      2           1.1    jruoho  *
      3           1.1    jruoho  * Module Name: dsargs - Support for execution of dynamic arguments for static
      4           1.1    jruoho  *                       objects (regions, fields, buffer fields, etc.)
      5           1.1    jruoho  *
      6           1.1    jruoho  *****************************************************************************/
      7           1.1    jruoho 
      8  1.1.1.14.6.1  perseant /******************************************************************************
      9  1.1.1.14.6.1  perseant  *
     10  1.1.1.14.6.1  perseant  * 1. Copyright Notice
     11  1.1.1.14.6.1  perseant  *
     12  1.1.1.14.6.1  perseant  * Some or all of this work - Copyright (c) 1999 - 2024, Intel Corp.
     13           1.1    jruoho  * All rights reserved.
     14           1.1    jruoho  *
     15  1.1.1.14.6.1  perseant  * 2. License
     16  1.1.1.14.6.1  perseant  *
     17  1.1.1.14.6.1  perseant  * 2.1. This is your license from Intel Corp. under its intellectual property
     18  1.1.1.14.6.1  perseant  * rights. You may have additional license terms from the party that provided
     19  1.1.1.14.6.1  perseant  * you this software, covering your right to use that party's intellectual
     20  1.1.1.14.6.1  perseant  * property rights.
     21  1.1.1.14.6.1  perseant  *
     22  1.1.1.14.6.1  perseant  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
     23  1.1.1.14.6.1  perseant  * copy of the source code appearing in this file ("Covered Code") an
     24  1.1.1.14.6.1  perseant  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
     25  1.1.1.14.6.1  perseant  * base code distributed originally by Intel ("Original Intel Code") to copy,
     26  1.1.1.14.6.1  perseant  * make derivatives, distribute, use and display any portion of the Covered
     27  1.1.1.14.6.1  perseant  * Code in any form, with the right to sublicense such rights; and
     28  1.1.1.14.6.1  perseant  *
     29  1.1.1.14.6.1  perseant  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
     30  1.1.1.14.6.1  perseant  * license (with the right to sublicense), under only those claims of Intel
     31  1.1.1.14.6.1  perseant  * patents that are infringed by the Original Intel Code, to make, use, sell,
     32  1.1.1.14.6.1  perseant  * offer to sell, and import the Covered Code and derivative works thereof
     33  1.1.1.14.6.1  perseant  * solely to the minimum extent necessary to exercise the above copyright
     34  1.1.1.14.6.1  perseant  * license, and in no event shall the patent license extend to any additions
     35  1.1.1.14.6.1  perseant  * to or modifications of the Original Intel Code. No other license or right
     36  1.1.1.14.6.1  perseant  * is granted directly or by implication, estoppel or otherwise;
     37  1.1.1.14.6.1  perseant  *
     38  1.1.1.14.6.1  perseant  * The above copyright and patent license is granted only if the following
     39  1.1.1.14.6.1  perseant  * conditions are met:
     40  1.1.1.14.6.1  perseant  *
     41  1.1.1.14.6.1  perseant  * 3. Conditions
     42  1.1.1.14.6.1  perseant  *
     43  1.1.1.14.6.1  perseant  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
     44  1.1.1.14.6.1  perseant  * Redistribution of source code of any substantial portion of the Covered
     45  1.1.1.14.6.1  perseant  * Code or modification with rights to further distribute source must include
     46  1.1.1.14.6.1  perseant  * the above Copyright Notice, the above License, this list of Conditions,
     47  1.1.1.14.6.1  perseant  * and the following Disclaimer and Export Compliance provision. In addition,
     48  1.1.1.14.6.1  perseant  * Licensee must cause all Covered Code to which Licensee contributes to
     49  1.1.1.14.6.1  perseant  * contain a file documenting the changes Licensee made to create that Covered
     50  1.1.1.14.6.1  perseant  * Code and the date of any change. Licensee must include in that file the
     51  1.1.1.14.6.1  perseant  * documentation of any changes made by any predecessor Licensee. Licensee
     52  1.1.1.14.6.1  perseant  * must include a prominent statement that the modification is derived,
     53  1.1.1.14.6.1  perseant  * directly or indirectly, from Original Intel Code.
     54  1.1.1.14.6.1  perseant  *
     55  1.1.1.14.6.1  perseant  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
     56  1.1.1.14.6.1  perseant  * Redistribution of source code of any substantial portion of the Covered
     57  1.1.1.14.6.1  perseant  * Code or modification without rights to further distribute source must
     58  1.1.1.14.6.1  perseant  * include the following Disclaimer and Export Compliance provision in the
     59  1.1.1.14.6.1  perseant  * documentation and/or other materials provided with distribution. In
     60  1.1.1.14.6.1  perseant  * addition, Licensee may not authorize further sublicense of source of any
     61  1.1.1.14.6.1  perseant  * portion of the Covered Code, and must include terms to the effect that the
     62  1.1.1.14.6.1  perseant  * license from Licensee to its licensee is limited to the intellectual
     63  1.1.1.14.6.1  perseant  * property embodied in the software Licensee provides to its licensee, and
     64  1.1.1.14.6.1  perseant  * not to intellectual property embodied in modifications its licensee may
     65  1.1.1.14.6.1  perseant  * make.
     66  1.1.1.14.6.1  perseant  *
     67  1.1.1.14.6.1  perseant  * 3.3. Redistribution of Executable. Redistribution in executable form of any
     68  1.1.1.14.6.1  perseant  * substantial portion of the Covered Code or modification must reproduce the
     69  1.1.1.14.6.1  perseant  * above Copyright Notice, and the following Disclaimer and Export Compliance
     70  1.1.1.14.6.1  perseant  * provision in the documentation and/or other materials provided with the
     71  1.1.1.14.6.1  perseant  * distribution.
     72  1.1.1.14.6.1  perseant  *
     73  1.1.1.14.6.1  perseant  * 3.4. Intel retains all right, title, and interest in and to the Original
     74  1.1.1.14.6.1  perseant  * Intel Code.
     75  1.1.1.14.6.1  perseant  *
     76  1.1.1.14.6.1  perseant  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
     77  1.1.1.14.6.1  perseant  * Intel shall be used in advertising or otherwise to promote the sale, use or
     78  1.1.1.14.6.1  perseant  * other dealings in products derived from or relating to the Covered Code
     79  1.1.1.14.6.1  perseant  * without prior written authorization from Intel.
     80  1.1.1.14.6.1  perseant  *
     81  1.1.1.14.6.1  perseant  * 4. Disclaimer and Export Compliance
     82  1.1.1.14.6.1  perseant  *
     83  1.1.1.14.6.1  perseant  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
     84  1.1.1.14.6.1  perseant  * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
     85  1.1.1.14.6.1  perseant  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
     86  1.1.1.14.6.1  perseant  * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
     87  1.1.1.14.6.1  perseant  * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
     88  1.1.1.14.6.1  perseant  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
     89  1.1.1.14.6.1  perseant  * PARTICULAR PURPOSE.
     90  1.1.1.14.6.1  perseant  *
     91  1.1.1.14.6.1  perseant  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
     92  1.1.1.14.6.1  perseant  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
     93  1.1.1.14.6.1  perseant  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
     94  1.1.1.14.6.1  perseant  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
     95  1.1.1.14.6.1  perseant  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
     96  1.1.1.14.6.1  perseant  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
     97  1.1.1.14.6.1  perseant  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
     98  1.1.1.14.6.1  perseant  * LIMITED REMEDY.
     99  1.1.1.14.6.1  perseant  *
    100  1.1.1.14.6.1  perseant  * 4.3. Licensee shall not export, either directly or indirectly, any of this
    101  1.1.1.14.6.1  perseant  * software or system incorporating such software without first obtaining any
    102  1.1.1.14.6.1  perseant  * required license or other approval from the U. S. Department of Commerce or
    103  1.1.1.14.6.1  perseant  * any other agency or department of the United States Government. In the
    104  1.1.1.14.6.1  perseant  * event Licensee exports any such software from the United States or
    105  1.1.1.14.6.1  perseant  * re-exports any such software from a foreign destination, Licensee shall
    106  1.1.1.14.6.1  perseant  * ensure that the distribution and export/re-export of the software is in
    107  1.1.1.14.6.1  perseant  * compliance with all laws, regulations, orders, or other restrictions of the
    108  1.1.1.14.6.1  perseant  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
    109  1.1.1.14.6.1  perseant  * any of its subsidiaries will export/re-export any technical data, process,
    110  1.1.1.14.6.1  perseant  * software, or service, directly or indirectly, to any country for which the
    111  1.1.1.14.6.1  perseant  * United States government or any agency thereof requires an export license,
    112  1.1.1.14.6.1  perseant  * other governmental approval, or letter of assurance, without first obtaining
    113  1.1.1.14.6.1  perseant  * such license, approval or letter.
    114  1.1.1.14.6.1  perseant  *
    115  1.1.1.14.6.1  perseant  *****************************************************************************
    116  1.1.1.14.6.1  perseant  *
    117  1.1.1.14.6.1  perseant  * Alternatively, you may choose to be licensed under the terms of the
    118  1.1.1.14.6.1  perseant  * following license:
    119  1.1.1.14.6.1  perseant  *
    120           1.1    jruoho  * Redistribution and use in source and binary forms, with or without
    121           1.1    jruoho  * modification, are permitted provided that the following conditions
    122           1.1    jruoho  * are met:
    123           1.1    jruoho  * 1. Redistributions of source code must retain the above copyright
    124           1.1    jruoho  *    notice, this list of conditions, and the following disclaimer,
    125           1.1    jruoho  *    without modification.
    126           1.1    jruoho  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
    127           1.1    jruoho  *    substantially similar to the "NO WARRANTY" disclaimer below
    128           1.1    jruoho  *    ("Disclaimer") and any redistribution must be conditioned upon
    129           1.1    jruoho  *    including a substantially similar Disclaimer requirement for further
    130           1.1    jruoho  *    binary redistribution.
    131           1.1    jruoho  * 3. Neither the names of the above-listed copyright holders nor the names
    132           1.1    jruoho  *    of any contributors may be used to endorse or promote products derived
    133           1.1    jruoho  *    from this software without specific prior written permission.
    134           1.1    jruoho  *
    135           1.1    jruoho  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    136           1.1    jruoho  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    137      1.1.1.12  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    138           1.1    jruoho  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    139  1.1.1.14.6.1  perseant  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    140  1.1.1.14.6.1  perseant  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    141  1.1.1.14.6.1  perseant  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    142  1.1.1.14.6.1  perseant  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    143  1.1.1.14.6.1  perseant  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    144  1.1.1.14.6.1  perseant  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    145  1.1.1.14.6.1  perseant  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    146  1.1.1.14.6.1  perseant  *
    147  1.1.1.14.6.1  perseant  * Alternatively, you may choose to be licensed under the terms of the
    148  1.1.1.14.6.1  perseant  * GNU General Public License ("GPL") version 2 as published by the Free
    149  1.1.1.14.6.1  perseant  * Software Foundation.
    150  1.1.1.14.6.1  perseant  *
    151  1.1.1.14.6.1  perseant  *****************************************************************************/
    152           1.1    jruoho 
    153           1.1    jruoho #include "acpi.h"
    154           1.1    jruoho #include "accommon.h"
    155           1.1    jruoho #include "acparser.h"
    156           1.1    jruoho #include "amlcode.h"
    157           1.1    jruoho #include "acdispat.h"
    158           1.1    jruoho #include "acnamesp.h"
    159           1.1    jruoho 
    160           1.1    jruoho #define _COMPONENT          ACPI_DISPATCHER
    161           1.1    jruoho         ACPI_MODULE_NAME    ("dsargs")
    162           1.1    jruoho 
    163           1.1    jruoho /* Local prototypes */
    164           1.1    jruoho 
    165           1.1    jruoho static ACPI_STATUS
    166           1.1    jruoho AcpiDsExecuteArguments (
    167           1.1    jruoho     ACPI_NAMESPACE_NODE     *Node,
    168           1.1    jruoho     ACPI_NAMESPACE_NODE     *ScopeNode,
    169           1.1    jruoho     UINT32                  AmlLength,
    170           1.1    jruoho     UINT8                   *AmlStart);
    171           1.1    jruoho 
    172           1.1    jruoho 
    173           1.1    jruoho /*******************************************************************************
    174           1.1    jruoho  *
    175           1.1    jruoho  * FUNCTION:    AcpiDsExecuteArguments
    176           1.1    jruoho  *
    177           1.1    jruoho  * PARAMETERS:  Node                - Object NS node
    178           1.1    jruoho  *              ScopeNode           - Parent NS node
    179           1.1    jruoho  *              AmlLength           - Length of executable AML
    180           1.1    jruoho  *              AmlStart            - Pointer to the AML
    181           1.1    jruoho  *
    182           1.1    jruoho  * RETURN:      Status.
    183           1.1    jruoho  *
    184           1.1    jruoho  * DESCRIPTION: Late (deferred) execution of region or field arguments
    185           1.1    jruoho  *
    186           1.1    jruoho  ******************************************************************************/
    187           1.1    jruoho 
    188           1.1    jruoho static ACPI_STATUS
    189           1.1    jruoho AcpiDsExecuteArguments (
    190           1.1    jruoho     ACPI_NAMESPACE_NODE     *Node,
    191           1.1    jruoho     ACPI_NAMESPACE_NODE     *ScopeNode,
    192           1.1    jruoho     UINT32                  AmlLength,
    193           1.1    jruoho     UINT8                   *AmlStart)
    194           1.1    jruoho {
    195           1.1    jruoho     ACPI_STATUS             Status;
    196           1.1    jruoho     ACPI_PARSE_OBJECT       *Op;
    197           1.1    jruoho     ACPI_WALK_STATE         *WalkState;
    198           1.1    jruoho 
    199           1.1    jruoho 
    200       1.1.1.8  christos     ACPI_FUNCTION_TRACE_PTR (DsExecuteArguments, AmlStart);
    201           1.1    jruoho 
    202           1.1    jruoho 
    203           1.1    jruoho     /* Allocate a new parser op to be the root of the parsed tree */
    204           1.1    jruoho 
    205       1.1.1.5  christos     Op = AcpiPsAllocOp (AML_INT_EVAL_SUBTREE_OP, AmlStart);
    206           1.1    jruoho     if (!Op)
    207           1.1    jruoho     {
    208           1.1    jruoho         return_ACPI_STATUS (AE_NO_MEMORY);
    209           1.1    jruoho     }
    210           1.1    jruoho 
    211           1.1    jruoho     /* Save the Node for use in AcpiPsParseAml */
    212           1.1    jruoho 
    213           1.1    jruoho     Op->Common.Node = ScopeNode;
    214           1.1    jruoho 
    215           1.1    jruoho     /* Create and initialize a new parser state */
    216           1.1    jruoho 
    217           1.1    jruoho     WalkState = AcpiDsCreateWalkState (0, NULL, NULL, NULL);
    218           1.1    jruoho     if (!WalkState)
    219           1.1    jruoho     {
    220           1.1    jruoho         Status = AE_NO_MEMORY;
    221           1.1    jruoho         goto Cleanup;
    222           1.1    jruoho     }
    223           1.1    jruoho 
    224           1.1    jruoho     Status = AcpiDsInitAmlWalk (WalkState, Op, NULL, AmlStart,
    225       1.1.1.6  christos         AmlLength, NULL, ACPI_IMODE_LOAD_PASS1);
    226           1.1    jruoho     if (ACPI_FAILURE (Status))
    227           1.1    jruoho     {
    228           1.1    jruoho         AcpiDsDeleteWalkState (WalkState);
    229           1.1    jruoho         goto Cleanup;
    230           1.1    jruoho     }
    231           1.1    jruoho 
    232           1.1    jruoho     /* Mark this parse as a deferred opcode */
    233           1.1    jruoho 
    234           1.1    jruoho     WalkState->ParseFlags = ACPI_PARSE_DEFERRED_OP;
    235           1.1    jruoho     WalkState->DeferredNode = Node;
    236           1.1    jruoho 
    237           1.1    jruoho     /* Pass1: Parse the entire declaration */
    238           1.1    jruoho 
    239           1.1    jruoho     Status = AcpiPsParseAml (WalkState);
    240           1.1    jruoho     if (ACPI_FAILURE (Status))
    241           1.1    jruoho     {
    242           1.1    jruoho         goto Cleanup;
    243           1.1    jruoho     }
    244           1.1    jruoho 
    245           1.1    jruoho     /* Get and init the Op created above */
    246           1.1    jruoho 
    247           1.1    jruoho     Op->Common.Node = Node;
    248           1.1    jruoho     AcpiPsDeleteParseTree (Op);
    249           1.1    jruoho 
    250           1.1    jruoho     /* Evaluate the deferred arguments */
    251           1.1    jruoho 
    252       1.1.1.5  christos     Op = AcpiPsAllocOp (AML_INT_EVAL_SUBTREE_OP, AmlStart);
    253           1.1    jruoho     if (!Op)
    254           1.1    jruoho     {
    255           1.1    jruoho         return_ACPI_STATUS (AE_NO_MEMORY);
    256           1.1    jruoho     }
    257           1.1    jruoho 
    258           1.1    jruoho     Op->Common.Node = ScopeNode;
    259           1.1    jruoho 
    260           1.1    jruoho     /* Create and initialize a new parser state */
    261           1.1    jruoho 
    262           1.1    jruoho     WalkState = AcpiDsCreateWalkState (0, NULL, NULL, NULL);
    263           1.1    jruoho     if (!WalkState)
    264           1.1    jruoho     {
    265           1.1    jruoho         Status = AE_NO_MEMORY;
    266           1.1    jruoho         goto Cleanup;
    267           1.1    jruoho     }
    268           1.1    jruoho 
    269           1.1    jruoho     /* Execute the opcode and arguments */
    270           1.1    jruoho 
    271           1.1    jruoho     Status = AcpiDsInitAmlWalk (WalkState, Op, NULL, AmlStart,
    272       1.1.1.6  christos         AmlLength, NULL, ACPI_IMODE_EXECUTE);
    273           1.1    jruoho     if (ACPI_FAILURE (Status))
    274           1.1    jruoho     {
    275           1.1    jruoho         AcpiDsDeleteWalkState (WalkState);
    276           1.1    jruoho         goto Cleanup;
    277           1.1    jruoho     }
    278           1.1    jruoho 
    279           1.1    jruoho     /* Mark this execution as a deferred opcode */
    280           1.1    jruoho 
    281           1.1    jruoho     WalkState->DeferredNode = Node;
    282           1.1    jruoho     Status = AcpiPsParseAml (WalkState);
    283           1.1    jruoho 
    284           1.1    jruoho Cleanup:
    285           1.1    jruoho     AcpiPsDeleteParseTree (Op);
    286           1.1    jruoho     return_ACPI_STATUS (Status);
    287           1.1    jruoho }
    288           1.1    jruoho 
    289           1.1    jruoho 
    290           1.1    jruoho /*******************************************************************************
    291           1.1    jruoho  *
    292           1.1    jruoho  * FUNCTION:    AcpiDsGetBufferFieldArguments
    293           1.1    jruoho  *
    294           1.1    jruoho  * PARAMETERS:  ObjDesc         - A valid BufferField object
    295           1.1    jruoho  *
    296           1.1    jruoho  * RETURN:      Status.
    297           1.1    jruoho  *
    298           1.1    jruoho  * DESCRIPTION: Get BufferField Buffer and Index. This implements the late
    299           1.1    jruoho  *              evaluation of these field attributes.
    300           1.1    jruoho  *
    301           1.1    jruoho  ******************************************************************************/
    302           1.1    jruoho 
    303           1.1    jruoho ACPI_STATUS
    304           1.1    jruoho AcpiDsGetBufferFieldArguments (
    305           1.1    jruoho     ACPI_OPERAND_OBJECT     *ObjDesc)
    306           1.1    jruoho {
    307           1.1    jruoho     ACPI_OPERAND_OBJECT     *ExtraDesc;
    308           1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    309           1.1    jruoho     ACPI_STATUS             Status;
    310           1.1    jruoho 
    311           1.1    jruoho 
    312           1.1    jruoho     ACPI_FUNCTION_TRACE_PTR (DsGetBufferFieldArguments, ObjDesc);
    313           1.1    jruoho 
    314           1.1    jruoho 
    315           1.1    jruoho     if (ObjDesc->Common.Flags & AOPOBJ_DATA_VALID)
    316           1.1    jruoho     {
    317           1.1    jruoho         return_ACPI_STATUS (AE_OK);
    318           1.1    jruoho     }
    319           1.1    jruoho 
    320           1.1    jruoho     /* Get the AML pointer (method object) and BufferField node */
    321           1.1    jruoho 
    322           1.1    jruoho     ExtraDesc = AcpiNsGetSecondaryObject (ObjDesc);
    323           1.1    jruoho     Node = ObjDesc->BufferField.Node;
    324           1.1    jruoho 
    325       1.1.1.6  christos     ACPI_DEBUG_EXEC (AcpiUtDisplayInitPathname (
    326       1.1.1.6  christos         ACPI_TYPE_BUFFER_FIELD, Node, NULL));
    327           1.1    jruoho 
    328           1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "[%4.4s] BufferField Arg Init\n",
    329           1.1    jruoho         AcpiUtGetNodeName (Node)));
    330           1.1    jruoho 
    331           1.1    jruoho     /* Execute the AML code for the TermArg arguments */
    332           1.1    jruoho 
    333           1.1    jruoho     Status = AcpiDsExecuteArguments (Node, Node->Parent,
    334       1.1.1.6  christos         ExtraDesc->Extra.AmlLength, ExtraDesc->Extra.AmlStart);
    335           1.1    jruoho     return_ACPI_STATUS (Status);
    336           1.1    jruoho }
    337           1.1    jruoho 
    338           1.1    jruoho 
    339           1.1    jruoho /*******************************************************************************
    340           1.1    jruoho  *
    341           1.1    jruoho  * FUNCTION:    AcpiDsGetBankFieldArguments
    342           1.1    jruoho  *
    343           1.1    jruoho  * PARAMETERS:  ObjDesc         - A valid BankField object
    344           1.1    jruoho  *
    345           1.1    jruoho  * RETURN:      Status.
    346           1.1    jruoho  *
    347           1.1    jruoho  * DESCRIPTION: Get BankField BankValue. This implements the late
    348           1.1    jruoho  *              evaluation of these field attributes.
    349           1.1    jruoho  *
    350           1.1    jruoho  ******************************************************************************/
    351           1.1    jruoho 
    352           1.1    jruoho ACPI_STATUS
    353           1.1    jruoho AcpiDsGetBankFieldArguments (
    354           1.1    jruoho     ACPI_OPERAND_OBJECT     *ObjDesc)
    355           1.1    jruoho {
    356           1.1    jruoho     ACPI_OPERAND_OBJECT     *ExtraDesc;
    357           1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    358           1.1    jruoho     ACPI_STATUS             Status;
    359           1.1    jruoho 
    360           1.1    jruoho 
    361           1.1    jruoho     ACPI_FUNCTION_TRACE_PTR (DsGetBankFieldArguments, ObjDesc);
    362           1.1    jruoho 
    363           1.1    jruoho 
    364           1.1    jruoho     if (ObjDesc->Common.Flags & AOPOBJ_DATA_VALID)
    365           1.1    jruoho     {
    366           1.1    jruoho         return_ACPI_STATUS (AE_OK);
    367           1.1    jruoho     }
    368           1.1    jruoho 
    369           1.1    jruoho     /* Get the AML pointer (method object) and BankField node */
    370           1.1    jruoho 
    371           1.1    jruoho     ExtraDesc = AcpiNsGetSecondaryObject (ObjDesc);
    372           1.1    jruoho     Node = ObjDesc->BankField.Node;
    373           1.1    jruoho 
    374       1.1.1.6  christos     ACPI_DEBUG_EXEC (AcpiUtDisplayInitPathname (
    375       1.1.1.6  christos         ACPI_TYPE_LOCAL_BANK_FIELD, Node, NULL));
    376           1.1    jruoho 
    377           1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "[%4.4s] BankField Arg Init\n",
    378           1.1    jruoho         AcpiUtGetNodeName (Node)));
    379           1.1    jruoho 
    380           1.1    jruoho     /* Execute the AML code for the TermArg arguments */
    381           1.1    jruoho 
    382           1.1    jruoho     Status = AcpiDsExecuteArguments (Node, Node->Parent,
    383       1.1.1.6  christos         ExtraDesc->Extra.AmlLength, ExtraDesc->Extra.AmlStart);
    384           1.1    jruoho     return_ACPI_STATUS (Status);
    385           1.1    jruoho }
    386           1.1    jruoho 
    387           1.1    jruoho 
    388           1.1    jruoho /*******************************************************************************
    389           1.1    jruoho  *
    390           1.1    jruoho  * FUNCTION:    AcpiDsGetBufferArguments
    391           1.1    jruoho  *
    392           1.1    jruoho  * PARAMETERS:  ObjDesc         - A valid Buffer object
    393           1.1    jruoho  *
    394           1.1    jruoho  * RETURN:      Status.
    395           1.1    jruoho  *
    396           1.1    jruoho  * DESCRIPTION: Get Buffer length and initializer byte list. This implements
    397           1.1    jruoho  *              the late evaluation of these attributes.
    398           1.1    jruoho  *
    399           1.1    jruoho  ******************************************************************************/
    400           1.1    jruoho 
    401           1.1    jruoho ACPI_STATUS
    402           1.1    jruoho AcpiDsGetBufferArguments (
    403           1.1    jruoho     ACPI_OPERAND_OBJECT     *ObjDesc)
    404           1.1    jruoho {
    405           1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    406           1.1    jruoho     ACPI_STATUS             Status;
    407           1.1    jruoho 
    408           1.1    jruoho 
    409           1.1    jruoho     ACPI_FUNCTION_TRACE_PTR (DsGetBufferArguments, ObjDesc);
    410           1.1    jruoho 
    411           1.1    jruoho 
    412           1.1    jruoho     if (ObjDesc->Common.Flags & AOPOBJ_DATA_VALID)
    413           1.1    jruoho     {
    414           1.1    jruoho         return_ACPI_STATUS (AE_OK);
    415           1.1    jruoho     }
    416           1.1    jruoho 
    417           1.1    jruoho     /* Get the Buffer node */
    418           1.1    jruoho 
    419           1.1    jruoho     Node = ObjDesc->Buffer.Node;
    420           1.1    jruoho     if (!Node)
    421           1.1    jruoho     {
    422           1.1    jruoho         ACPI_ERROR ((AE_INFO,
    423       1.1.1.6  christos             "No pointer back to namespace node in buffer object %p",
    424       1.1.1.6  christos             ObjDesc));
    425           1.1    jruoho         return_ACPI_STATUS (AE_AML_INTERNAL);
    426           1.1    jruoho     }
    427           1.1    jruoho 
    428           1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Buffer Arg Init\n"));
    429           1.1    jruoho 
    430           1.1    jruoho     /* Execute the AML code for the TermArg arguments */
    431           1.1    jruoho 
    432           1.1    jruoho     Status = AcpiDsExecuteArguments (Node, Node,
    433       1.1.1.6  christos         ObjDesc->Buffer.AmlLength, ObjDesc->Buffer.AmlStart);
    434           1.1    jruoho     return_ACPI_STATUS (Status);
    435           1.1    jruoho }
    436           1.1    jruoho 
    437           1.1    jruoho 
    438           1.1    jruoho /*******************************************************************************
    439           1.1    jruoho  *
    440           1.1    jruoho  * FUNCTION:    AcpiDsGetPackageArguments
    441           1.1    jruoho  *
    442           1.1    jruoho  * PARAMETERS:  ObjDesc         - A valid Package object
    443           1.1    jruoho  *
    444           1.1    jruoho  * RETURN:      Status.
    445           1.1    jruoho  *
    446           1.1    jruoho  * DESCRIPTION: Get Package length and initializer byte list. This implements
    447           1.1    jruoho  *              the late evaluation of these attributes.
    448           1.1    jruoho  *
    449           1.1    jruoho  ******************************************************************************/
    450           1.1    jruoho 
    451           1.1    jruoho ACPI_STATUS
    452           1.1    jruoho AcpiDsGetPackageArguments (
    453           1.1    jruoho     ACPI_OPERAND_OBJECT     *ObjDesc)
    454           1.1    jruoho {
    455           1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    456           1.1    jruoho     ACPI_STATUS             Status;
    457           1.1    jruoho 
    458           1.1    jruoho 
    459           1.1    jruoho     ACPI_FUNCTION_TRACE_PTR (DsGetPackageArguments, ObjDesc);
    460           1.1    jruoho 
    461           1.1    jruoho 
    462           1.1    jruoho     if (ObjDesc->Common.Flags & AOPOBJ_DATA_VALID)
    463           1.1    jruoho     {
    464           1.1    jruoho         return_ACPI_STATUS (AE_OK);
    465           1.1    jruoho     }
    466           1.1    jruoho 
    467           1.1    jruoho     /* Get the Package node */
    468           1.1    jruoho 
    469           1.1    jruoho     Node = ObjDesc->Package.Node;
    470           1.1    jruoho     if (!Node)
    471           1.1    jruoho     {
    472           1.1    jruoho         ACPI_ERROR ((AE_INFO,
    473           1.1    jruoho             "No pointer back to namespace node in package %p", ObjDesc));
    474           1.1    jruoho         return_ACPI_STATUS (AE_AML_INTERNAL);
    475           1.1    jruoho     }
    476           1.1    jruoho 
    477       1.1.1.8  christos     ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Package Argument Init, AML Ptr: %p\n",
    478       1.1.1.8  christos         ObjDesc->Package.AmlStart));
    479           1.1    jruoho 
    480           1.1    jruoho     /* Execute the AML code for the TermArg arguments */
    481           1.1    jruoho 
    482           1.1    jruoho     Status = AcpiDsExecuteArguments (Node, Node,
    483       1.1.1.6  christos         ObjDesc->Package.AmlLength, ObjDesc->Package.AmlStart);
    484       1.1.1.9  christos 
    485           1.1    jruoho     return_ACPI_STATUS (Status);
    486           1.1    jruoho }
    487           1.1    jruoho 
    488           1.1    jruoho 
    489           1.1    jruoho /*******************************************************************************
    490           1.1    jruoho  *
    491           1.1    jruoho  * FUNCTION:    AcpiDsGetRegionArguments
    492           1.1    jruoho  *
    493           1.1    jruoho  * PARAMETERS:  ObjDesc         - A valid region object
    494           1.1    jruoho  *
    495           1.1    jruoho  * RETURN:      Status.
    496           1.1    jruoho  *
    497           1.1    jruoho  * DESCRIPTION: Get region address and length. This implements the late
    498           1.1    jruoho  *              evaluation of these region attributes.
    499           1.1    jruoho  *
    500           1.1    jruoho  ******************************************************************************/
    501           1.1    jruoho 
    502           1.1    jruoho ACPI_STATUS
    503           1.1    jruoho AcpiDsGetRegionArguments (
    504           1.1    jruoho     ACPI_OPERAND_OBJECT     *ObjDesc)
    505           1.1    jruoho {
    506           1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    507           1.1    jruoho     ACPI_STATUS             Status;
    508           1.1    jruoho     ACPI_OPERAND_OBJECT     *ExtraDesc;
    509           1.1    jruoho 
    510           1.1    jruoho 
    511           1.1    jruoho     ACPI_FUNCTION_TRACE_PTR (DsGetRegionArguments, ObjDesc);
    512           1.1    jruoho 
    513           1.1    jruoho 
    514           1.1    jruoho     if (ObjDesc->Region.Flags & AOPOBJ_DATA_VALID)
    515           1.1    jruoho     {
    516           1.1    jruoho         return_ACPI_STATUS (AE_OK);
    517           1.1    jruoho     }
    518           1.1    jruoho 
    519           1.1    jruoho     ExtraDesc = AcpiNsGetSecondaryObject (ObjDesc);
    520           1.1    jruoho     if (!ExtraDesc)
    521           1.1    jruoho     {
    522           1.1    jruoho         return_ACPI_STATUS (AE_NOT_EXIST);
    523           1.1    jruoho     }
    524           1.1    jruoho 
    525           1.1    jruoho     /* Get the Region node */
    526           1.1    jruoho 
    527           1.1    jruoho     Node = ObjDesc->Region.Node;
    528           1.1    jruoho 
    529       1.1.1.6  christos     ACPI_DEBUG_EXEC (AcpiUtDisplayInitPathname (
    530       1.1.1.6  christos         ACPI_TYPE_REGION, Node, NULL));
    531           1.1    jruoho 
    532       1.1.1.6  christos     ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
    533       1.1.1.6  christos         "[%4.4s] OpRegion Arg Init at AML %p\n",
    534           1.1    jruoho         AcpiUtGetNodeName (Node), ExtraDesc->Extra.AmlStart));
    535           1.1    jruoho 
    536           1.1    jruoho     /* Execute the argument AML */
    537           1.1    jruoho 
    538       1.1.1.2  christos     Status = AcpiDsExecuteArguments (Node, ExtraDesc->Extra.ScopeNode,
    539       1.1.1.6  christos         ExtraDesc->Extra.AmlLength, ExtraDesc->Extra.AmlStart);
    540       1.1.1.2  christos     if (ACPI_FAILURE (Status))
    541       1.1.1.2  christos     {
    542       1.1.1.2  christos         return_ACPI_STATUS (Status);
    543       1.1.1.2  christos     }
    544       1.1.1.2  christos 
    545       1.1.1.2  christos     Status = AcpiUtAddAddressRange (ObjDesc->Region.SpaceId,
    546       1.1.1.6  christos         ObjDesc->Region.Address, ObjDesc->Region.Length, Node);
    547           1.1    jruoho     return_ACPI_STATUS (Status);
    548           1.1    jruoho }
    549