Home | History | Annotate | Line # | Download | only in dispatcher
dscontrol.c revision 1.1.1.14
      1       1.1    jruoho /******************************************************************************
      2       1.1    jruoho  *
      3       1.1    jruoho  * Module Name: dscontrol - Support for execution control opcodes -
      4       1.1    jruoho  *                          if/else/while/return
      5       1.1    jruoho  *
      6       1.1    jruoho  *****************************************************************************/
      7       1.1    jruoho 
      8       1.1    jruoho /*
      9  1.1.1.14  christos  * Copyright (C) 2000 - 2022, Intel Corp.
     10       1.1    jruoho  * All rights reserved.
     11       1.1    jruoho  *
     12       1.1    jruoho  * Redistribution and use in source and binary forms, with or without
     13       1.1    jruoho  * modification, are permitted provided that the following conditions
     14       1.1    jruoho  * are met:
     15       1.1    jruoho  * 1. Redistributions of source code must retain the above copyright
     16       1.1    jruoho  *    notice, this list of conditions, and the following disclaimer,
     17       1.1    jruoho  *    without modification.
     18       1.1    jruoho  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     19       1.1    jruoho  *    substantially similar to the "NO WARRANTY" disclaimer below
     20       1.1    jruoho  *    ("Disclaimer") and any redistribution must be conditioned upon
     21       1.1    jruoho  *    including a substantially similar Disclaimer requirement for further
     22       1.1    jruoho  *    binary redistribution.
     23       1.1    jruoho  * 3. Neither the names of the above-listed copyright holders nor the names
     24       1.1    jruoho  *    of any contributors may be used to endorse or promote products derived
     25       1.1    jruoho  *    from this software without specific prior written permission.
     26       1.1    jruoho  *
     27       1.1    jruoho  * Alternatively, this software may be distributed under the terms of the
     28       1.1    jruoho  * GNU General Public License ("GPL") version 2 as published by the Free
     29       1.1    jruoho  * Software Foundation.
     30       1.1    jruoho  *
     31       1.1    jruoho  * NO WARRANTY
     32       1.1    jruoho  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     33       1.1    jruoho  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     34  1.1.1.13  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     35       1.1    jruoho  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     36       1.1    jruoho  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37       1.1    jruoho  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38       1.1    jruoho  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39       1.1    jruoho  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     40       1.1    jruoho  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     41       1.1    jruoho  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     42       1.1    jruoho  * POSSIBILITY OF SUCH DAMAGES.
     43       1.1    jruoho  */
     44       1.1    jruoho 
     45       1.1    jruoho #include "acpi.h"
     46       1.1    jruoho #include "accommon.h"
     47       1.1    jruoho #include "amlcode.h"
     48       1.1    jruoho #include "acdispat.h"
     49       1.1    jruoho #include "acinterp.h"
     50   1.1.1.5  christos #include "acdebug.h"
     51       1.1    jruoho 
     52       1.1    jruoho #define _COMPONENT          ACPI_DISPATCHER
     53       1.1    jruoho         ACPI_MODULE_NAME    ("dscontrol")
     54       1.1    jruoho 
     55       1.1    jruoho 
     56       1.1    jruoho /*******************************************************************************
     57       1.1    jruoho  *
     58       1.1    jruoho  * FUNCTION:    AcpiDsExecBeginControlOp
     59       1.1    jruoho  *
     60       1.1    jruoho  * PARAMETERS:  WalkList        - The list that owns the walk stack
     61       1.1    jruoho  *              Op              - The control Op
     62       1.1    jruoho  *
     63       1.1    jruoho  * RETURN:      Status
     64       1.1    jruoho  *
     65       1.1    jruoho  * DESCRIPTION: Handles all control ops encountered during control method
     66       1.1    jruoho  *              execution.
     67       1.1    jruoho  *
     68       1.1    jruoho  ******************************************************************************/
     69       1.1    jruoho 
     70       1.1    jruoho ACPI_STATUS
     71       1.1    jruoho AcpiDsExecBeginControlOp (
     72       1.1    jruoho     ACPI_WALK_STATE         *WalkState,
     73       1.1    jruoho     ACPI_PARSE_OBJECT       *Op)
     74       1.1    jruoho {
     75       1.1    jruoho     ACPI_STATUS             Status = AE_OK;
     76       1.1    jruoho     ACPI_GENERIC_STATE      *ControlState;
     77       1.1    jruoho 
     78       1.1    jruoho 
     79       1.1    jruoho     ACPI_FUNCTION_NAME (DsExecBeginControlOp);
     80       1.1    jruoho 
     81       1.1    jruoho 
     82       1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p Opcode=%2.2X State=%p\n",
     83       1.1    jruoho         Op, Op->Common.AmlOpcode, WalkState));
     84       1.1    jruoho 
     85       1.1    jruoho     switch (Op->Common.AmlOpcode)
     86       1.1    jruoho     {
     87       1.1    jruoho     case AML_WHILE_OP:
     88       1.1    jruoho         /*
     89       1.1    jruoho          * If this is an additional iteration of a while loop, continue.
     90       1.1    jruoho          * There is no need to allocate a new control state.
     91       1.1    jruoho          */
     92       1.1    jruoho         if (WalkState->ControlState)
     93       1.1    jruoho         {
     94       1.1    jruoho             if (WalkState->ControlState->Control.AmlPredicateStart ==
     95       1.1    jruoho                 (WalkState->ParserState.Aml - 1))
     96       1.1    jruoho             {
     97       1.1    jruoho                 /* Reset the state to start-of-loop */
     98       1.1    jruoho 
     99       1.1    jruoho                 WalkState->ControlState->Common.State =
    100       1.1    jruoho                     ACPI_CONTROL_CONDITIONAL_EXECUTING;
    101       1.1    jruoho                 break;
    102       1.1    jruoho             }
    103       1.1    jruoho         }
    104       1.1    jruoho 
    105  1.1.1.13  christos         ACPI_FALLTHROUGH;
    106       1.1    jruoho 
    107       1.1    jruoho     case AML_IF_OP:
    108       1.1    jruoho         /*
    109       1.1    jruoho          * IF/WHILE: Create a new control state to manage these
    110       1.1    jruoho          * constructs. We need to manage these as a stack, in order
    111       1.1    jruoho          * to handle nesting.
    112       1.1    jruoho          */
    113       1.1    jruoho         ControlState = AcpiUtCreateControlState ();
    114       1.1    jruoho         if (!ControlState)
    115       1.1    jruoho         {
    116       1.1    jruoho             Status = AE_NO_MEMORY;
    117       1.1    jruoho             break;
    118       1.1    jruoho         }
    119       1.1    jruoho         /*
    120       1.1    jruoho          * Save a pointer to the predicate for multiple executions
    121       1.1    jruoho          * of a loop
    122       1.1    jruoho          */
    123   1.1.1.5  christos         ControlState->Control.AmlPredicateStart =
    124   1.1.1.5  christos             WalkState->ParserState.Aml - 1;
    125   1.1.1.5  christos         ControlState->Control.PackageEnd =
    126   1.1.1.5  christos             WalkState->ParserState.PkgEnd;
    127   1.1.1.5  christos         ControlState->Control.Opcode =
    128   1.1.1.5  christos             Op->Common.AmlOpcode;
    129   1.1.1.8  christos         ControlState->Control.LoopTimeout = AcpiOsGetTimer () +
    130  1.1.1.11  christos            ((UINT64) AcpiGbl_MaxLoopIterations * ACPI_100NSEC_PER_SEC);
    131       1.1    jruoho 
    132       1.1    jruoho         /* Push the control state on this walk's control stack */
    133       1.1    jruoho 
    134       1.1    jruoho         AcpiUtPushGenericState (&WalkState->ControlState, ControlState);
    135       1.1    jruoho         break;
    136       1.1    jruoho 
    137       1.1    jruoho     case AML_ELSE_OP:
    138       1.1    jruoho 
    139       1.1    jruoho         /* Predicate is in the state object */
    140       1.1    jruoho         /* If predicate is true, the IF was executed, ignore ELSE part */
    141       1.1    jruoho 
    142       1.1    jruoho         if (WalkState->LastPredicate)
    143       1.1    jruoho         {
    144       1.1    jruoho             Status = AE_CTRL_TRUE;
    145       1.1    jruoho         }
    146       1.1    jruoho 
    147       1.1    jruoho         break;
    148       1.1    jruoho 
    149       1.1    jruoho     case AML_RETURN_OP:
    150       1.1    jruoho 
    151       1.1    jruoho         break;
    152       1.1    jruoho 
    153       1.1    jruoho     default:
    154   1.1.1.2  christos 
    155       1.1    jruoho         break;
    156       1.1    jruoho     }
    157       1.1    jruoho 
    158       1.1    jruoho     return (Status);
    159       1.1    jruoho }
    160       1.1    jruoho 
    161       1.1    jruoho 
    162       1.1    jruoho /*******************************************************************************
    163       1.1    jruoho  *
    164       1.1    jruoho  * FUNCTION:    AcpiDsExecEndControlOp
    165       1.1    jruoho  *
    166       1.1    jruoho  * PARAMETERS:  WalkList        - The list that owns the walk stack
    167       1.1    jruoho  *              Op              - The control Op
    168       1.1    jruoho  *
    169       1.1    jruoho  * RETURN:      Status
    170       1.1    jruoho  *
    171       1.1    jruoho  * DESCRIPTION: Handles all control ops encountered during control method
    172       1.1    jruoho  *              execution.
    173       1.1    jruoho  *
    174       1.1    jruoho  ******************************************************************************/
    175       1.1    jruoho 
    176       1.1    jruoho ACPI_STATUS
    177       1.1    jruoho AcpiDsExecEndControlOp (
    178       1.1    jruoho     ACPI_WALK_STATE         *WalkState,
    179       1.1    jruoho     ACPI_PARSE_OBJECT       *Op)
    180       1.1    jruoho {
    181       1.1    jruoho     ACPI_STATUS             Status = AE_OK;
    182       1.1    jruoho     ACPI_GENERIC_STATE      *ControlState;
    183       1.1    jruoho 
    184       1.1    jruoho 
    185       1.1    jruoho     ACPI_FUNCTION_NAME (DsExecEndControlOp);
    186       1.1    jruoho 
    187       1.1    jruoho 
    188       1.1    jruoho     switch (Op->Common.AmlOpcode)
    189       1.1    jruoho     {
    190       1.1    jruoho     case AML_IF_OP:
    191       1.1    jruoho 
    192       1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[IF_OP] Op=%p\n", Op));
    193       1.1    jruoho 
    194       1.1    jruoho         /*
    195       1.1    jruoho          * Save the result of the predicate in case there is an
    196       1.1    jruoho          * ELSE to come
    197       1.1    jruoho          */
    198       1.1    jruoho         WalkState->LastPredicate =
    199       1.1    jruoho             (BOOLEAN) WalkState->ControlState->Common.Value;
    200       1.1    jruoho 
    201       1.1    jruoho         /*
    202       1.1    jruoho          * Pop the control state that was created at the start
    203       1.1    jruoho          * of the IF and free it
    204       1.1    jruoho          */
    205       1.1    jruoho         ControlState = AcpiUtPopGenericState (&WalkState->ControlState);
    206       1.1    jruoho         AcpiUtDeleteGenericState (ControlState);
    207       1.1    jruoho         break;
    208       1.1    jruoho 
    209       1.1    jruoho     case AML_ELSE_OP:
    210       1.1    jruoho 
    211       1.1    jruoho         break;
    212       1.1    jruoho 
    213       1.1    jruoho     case AML_WHILE_OP:
    214       1.1    jruoho 
    215       1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[WHILE_OP] Op=%p\n", Op));
    216       1.1    jruoho 
    217       1.1    jruoho         ControlState = WalkState->ControlState;
    218       1.1    jruoho         if (ControlState->Common.Value)
    219       1.1    jruoho         {
    220       1.1    jruoho             /* Predicate was true, the body of the loop was just executed */
    221       1.1    jruoho 
    222       1.1    jruoho             /*
    223   1.1.1.8  christos              * This infinite loop detection mechanism allows the interpreter
    224   1.1.1.8  christos              * to escape possibly infinite loops. This can occur in poorly
    225   1.1.1.8  christos              * written AML when the hardware does not respond within a while
    226   1.1.1.8  christos              * loop and the loop does not implement a timeout.
    227       1.1    jruoho              */
    228   1.1.1.8  christos             if (ACPI_TIME_AFTER (AcpiOsGetTimer (),
    229   1.1.1.8  christos                     ControlState->Control.LoopTimeout))
    230       1.1    jruoho             {
    231   1.1.1.8  christos                 Status = AE_AML_LOOP_TIMEOUT;
    232       1.1    jruoho                 break;
    233       1.1    jruoho             }
    234       1.1    jruoho 
    235       1.1    jruoho             /*
    236       1.1    jruoho              * Go back and evaluate the predicate and maybe execute the loop
    237       1.1    jruoho              * another time
    238       1.1    jruoho              */
    239       1.1    jruoho             Status = AE_CTRL_PENDING;
    240   1.1.1.5  christos             WalkState->AmlLastWhile =
    241   1.1.1.5  christos                 ControlState->Control.AmlPredicateStart;
    242       1.1    jruoho             break;
    243       1.1    jruoho         }
    244       1.1    jruoho 
    245       1.1    jruoho         /* Predicate was false, terminate this while loop */
    246       1.1    jruoho 
    247       1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    248       1.1    jruoho             "[WHILE_OP] termination! Op=%p\n",Op));
    249       1.1    jruoho 
    250       1.1    jruoho         /* Pop this control state and free it */
    251       1.1    jruoho 
    252       1.1    jruoho         ControlState = AcpiUtPopGenericState (&WalkState->ControlState);
    253       1.1    jruoho         AcpiUtDeleteGenericState (ControlState);
    254       1.1    jruoho         break;
    255       1.1    jruoho 
    256       1.1    jruoho     case AML_RETURN_OP:
    257       1.1    jruoho 
    258       1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    259       1.1    jruoho             "[RETURN_OP] Op=%p Arg=%p\n",Op, Op->Common.Value.Arg));
    260       1.1    jruoho 
    261       1.1    jruoho         /*
    262       1.1    jruoho          * One optional operand -- the return value
    263       1.1    jruoho          * It can be either an immediate operand or a result that
    264       1.1    jruoho          * has been bubbled up the tree
    265       1.1    jruoho          */
    266       1.1    jruoho         if (Op->Common.Value.Arg)
    267       1.1    jruoho         {
    268       1.1    jruoho             /* Since we have a real Return(), delete any implicit return */
    269       1.1    jruoho 
    270       1.1    jruoho             AcpiDsClearImplicitReturn (WalkState);
    271       1.1    jruoho 
    272       1.1    jruoho             /* Return statement has an immediate operand */
    273       1.1    jruoho 
    274       1.1    jruoho             Status = AcpiDsCreateOperands (WalkState, Op->Common.Value.Arg);
    275       1.1    jruoho             if (ACPI_FAILURE (Status))
    276       1.1    jruoho             {
    277       1.1    jruoho                 return (Status);
    278       1.1    jruoho             }
    279       1.1    jruoho 
    280       1.1    jruoho             /*
    281       1.1    jruoho              * If value being returned is a Reference (such as
    282       1.1    jruoho              * an arg or local), resolve it now because it may
    283       1.1    jruoho              * cease to exist at the end of the method.
    284       1.1    jruoho              */
    285   1.1.1.5  christos             Status = AcpiExResolveToValue (
    286   1.1.1.5  christos                 &WalkState->Operands [0], WalkState);
    287       1.1    jruoho             if (ACPI_FAILURE (Status))
    288       1.1    jruoho             {
    289       1.1    jruoho                 return (Status);
    290       1.1    jruoho             }
    291       1.1    jruoho 
    292       1.1    jruoho             /*
    293       1.1    jruoho              * Get the return value and save as the last result
    294   1.1.1.2  christos              * value. This is the only place where WalkState->ReturnDesc
    295       1.1    jruoho              * is set to anything other than zero!
    296       1.1    jruoho              */
    297       1.1    jruoho             WalkState->ReturnDesc = WalkState->Operands[0];
    298       1.1    jruoho         }
    299       1.1    jruoho         else if (WalkState->ResultCount)
    300       1.1    jruoho         {
    301       1.1    jruoho             /* Since we have a real Return(), delete any implicit return */
    302       1.1    jruoho 
    303       1.1    jruoho             AcpiDsClearImplicitReturn (WalkState);
    304       1.1    jruoho 
    305       1.1    jruoho             /*
    306       1.1    jruoho              * The return value has come from a previous calculation.
    307       1.1    jruoho              *
    308       1.1    jruoho              * If value being returned is a Reference (such as
    309       1.1    jruoho              * an arg or local), resolve it now because it may
    310       1.1    jruoho              * cease to exist at the end of the method.
    311       1.1    jruoho              *
    312       1.1    jruoho              * Allow references created by the Index operator to return
    313       1.1    jruoho              * unchanged.
    314       1.1    jruoho              */
    315   1.1.1.5  christos             if ((ACPI_GET_DESCRIPTOR_TYPE (WalkState->Results->Results.ObjDesc[0]) ==
    316   1.1.1.5  christos                     ACPI_DESC_TYPE_OPERAND) &&
    317   1.1.1.5  christos                 ((WalkState->Results->Results.ObjDesc [0])->Common.Type ==
    318   1.1.1.5  christos                     ACPI_TYPE_LOCAL_REFERENCE) &&
    319   1.1.1.5  christos                 ((WalkState->Results->Results.ObjDesc [0])->Reference.Class !=
    320   1.1.1.5  christos                     ACPI_REFCLASS_INDEX))
    321       1.1    jruoho             {
    322   1.1.1.5  christos                 Status = AcpiExResolveToValue (
    323   1.1.1.5  christos                     &WalkState->Results->Results.ObjDesc [0], WalkState);
    324       1.1    jruoho                 if (ACPI_FAILURE (Status))
    325       1.1    jruoho                 {
    326       1.1    jruoho                     return (Status);
    327       1.1    jruoho                 }
    328       1.1    jruoho             }
    329       1.1    jruoho 
    330       1.1    jruoho             WalkState->ReturnDesc = WalkState->Results->Results.ObjDesc [0];
    331       1.1    jruoho         }
    332       1.1    jruoho         else
    333       1.1    jruoho         {
    334       1.1    jruoho             /* No return operand */
    335       1.1    jruoho 
    336       1.1    jruoho             if (WalkState->NumOperands)
    337       1.1    jruoho             {
    338       1.1    jruoho                 AcpiUtRemoveReference (WalkState->Operands [0]);
    339       1.1    jruoho             }
    340       1.1    jruoho 
    341   1.1.1.5  christos             WalkState->Operands[0] = NULL;
    342   1.1.1.5  christos             WalkState->NumOperands = 0;
    343   1.1.1.5  christos             WalkState->ReturnDesc = NULL;
    344       1.1    jruoho         }
    345       1.1    jruoho 
    346       1.1    jruoho 
    347       1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    348       1.1    jruoho             "Completed RETURN_OP State=%p, RetVal=%p\n",
    349       1.1    jruoho             WalkState, WalkState->ReturnDesc));
    350       1.1    jruoho 
    351       1.1    jruoho         /* End the control method execution right now */
    352       1.1    jruoho 
    353       1.1    jruoho         Status = AE_CTRL_TERMINATE;
    354       1.1    jruoho         break;
    355       1.1    jruoho 
    356       1.1    jruoho     case AML_NOOP_OP:
    357       1.1    jruoho 
    358       1.1    jruoho         /* Just do nothing! */
    359       1.1    jruoho 
    360   1.1.1.2  christos         break;
    361       1.1    jruoho 
    362   1.1.1.7  christos     case AML_BREAKPOINT_OP:
    363       1.1    jruoho 
    364   1.1.1.5  christos         AcpiDbSignalBreakPoint (WalkState);
    365       1.1    jruoho 
    366       1.1    jruoho         /* Call to the OSL in case OS wants a piece of the action */
    367       1.1    jruoho 
    368       1.1    jruoho         Status = AcpiOsSignal (ACPI_SIGNAL_BREAKPOINT,
    369   1.1.1.5  christos             "Executed AML Breakpoint opcode");
    370       1.1    jruoho         break;
    371       1.1    jruoho 
    372       1.1    jruoho     case AML_BREAK_OP:
    373       1.1    jruoho     case AML_CONTINUE_OP: /* ACPI 2.0 */
    374       1.1    jruoho 
    375       1.1    jruoho         /* Pop and delete control states until we find a while */
    376       1.1    jruoho 
    377       1.1    jruoho         while (WalkState->ControlState &&
    378       1.1    jruoho                 (WalkState->ControlState->Control.Opcode != AML_WHILE_OP))
    379       1.1    jruoho         {
    380       1.1    jruoho             ControlState = AcpiUtPopGenericState (&WalkState->ControlState);
    381       1.1    jruoho             AcpiUtDeleteGenericState (ControlState);
    382       1.1    jruoho         }
    383       1.1    jruoho 
    384       1.1    jruoho         /* No while found? */
    385       1.1    jruoho 
    386       1.1    jruoho         if (!WalkState->ControlState)
    387       1.1    jruoho         {
    388       1.1    jruoho             return (AE_AML_NO_WHILE);
    389       1.1    jruoho         }
    390       1.1    jruoho 
    391       1.1    jruoho         /* Was: WalkState->AmlLastWhile = WalkState->ControlState->Control.AmlPredicateStart; */
    392       1.1    jruoho 
    393   1.1.1.5  christos         WalkState->AmlLastWhile =
    394   1.1.1.5  christos             WalkState->ControlState->Control.PackageEnd;
    395       1.1    jruoho 
    396       1.1    jruoho         /* Return status depending on opcode */
    397       1.1    jruoho 
    398       1.1    jruoho         if (Op->Common.AmlOpcode == AML_BREAK_OP)
    399       1.1    jruoho         {
    400       1.1    jruoho             Status = AE_CTRL_BREAK;
    401       1.1    jruoho         }
    402       1.1    jruoho         else
    403       1.1    jruoho         {
    404       1.1    jruoho             Status = AE_CTRL_CONTINUE;
    405       1.1    jruoho         }
    406       1.1    jruoho         break;
    407       1.1    jruoho 
    408       1.1    jruoho     default:
    409       1.1    jruoho 
    410       1.1    jruoho         ACPI_ERROR ((AE_INFO, "Unknown control opcode=0x%X Op=%p",
    411       1.1    jruoho             Op->Common.AmlOpcode, Op));
    412       1.1    jruoho 
    413       1.1    jruoho         Status = AE_AML_BAD_OPCODE;
    414       1.1    jruoho         break;
    415       1.1    jruoho     }
    416       1.1    jruoho 
    417       1.1    jruoho     return (Status);
    418       1.1    jruoho }
    419