Home | History | Annotate | Line # | Download | only in compiler
aslanalyze.c revision 1.14.4.1
      1       1.1    jruoho /******************************************************************************
      2       1.1    jruoho  *
      3       1.2  christos  * Module Name: aslanalyze.c - Support functions for parse tree walks
      4       1.1    jruoho  *
      5       1.1    jruoho  *****************************************************************************/
      6       1.1    jruoho 
      7       1.2  christos /*
      8  1.14.4.1   thorpej  * Copyright (C) 2000 - 2021, Intel Corp.
      9       1.1    jruoho  * All rights reserved.
     10       1.1    jruoho  *
     11       1.2  christos  * Redistribution and use in source and binary forms, with or without
     12       1.2  christos  * modification, are permitted provided that the following conditions
     13       1.2  christos  * are met:
     14       1.2  christos  * 1. Redistributions of source code must retain the above copyright
     15       1.2  christos  *    notice, this list of conditions, and the following disclaimer,
     16       1.2  christos  *    without modification.
     17       1.2  christos  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18       1.2  christos  *    substantially similar to the "NO WARRANTY" disclaimer below
     19       1.2  christos  *    ("Disclaimer") and any redistribution must be conditioned upon
     20       1.2  christos  *    including a substantially similar Disclaimer requirement for further
     21       1.2  christos  *    binary redistribution.
     22       1.2  christos  * 3. Neither the names of the above-listed copyright holders nor the names
     23       1.2  christos  *    of any contributors may be used to endorse or promote products derived
     24       1.2  christos  *    from this software without specific prior written permission.
     25       1.2  christos  *
     26       1.2  christos  * Alternatively, this software may be distributed under the terms of the
     27       1.2  christos  * GNU General Public License ("GPL") version 2 as published by the Free
     28       1.2  christos  * Software Foundation.
     29       1.2  christos  *
     30       1.2  christos  * NO WARRANTY
     31       1.2  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32       1.2  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.14.4.1   thorpej  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     34       1.2  christos  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35       1.2  christos  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36       1.2  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37       1.2  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38       1.2  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39       1.2  christos  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40       1.2  christos  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41       1.2  christos  * POSSIBILITY OF SUCH DAMAGES.
     42       1.2  christos  */
     43       1.1    jruoho 
     44       1.1    jruoho #include "aslcompiler.h"
     45       1.1    jruoho #include "aslcompiler.y.h"
     46      1.14  christos #include "acnamesp.h"
     47       1.2  christos #include <string.h>
     48       1.2  christos 
     49       1.1    jruoho 
     50       1.1    jruoho #define _COMPONENT          ACPI_COMPILER
     51       1.1    jruoho         ACPI_MODULE_NAME    ("aslanalyze")
     52       1.1    jruoho 
     53       1.1    jruoho 
     54       1.7  christos /* Local Prototypes */
     55       1.7  christos 
     56       1.7  christos static ACPI_STATUS
     57       1.7  christos ApDeviceSubtreeWalk (
     58       1.7  christos     ACPI_PARSE_OBJECT       *Op,
     59       1.7  christos     UINT32                  Level,
     60       1.7  christos     void                    *Context);
     61       1.7  christos 
     62       1.7  christos 
     63       1.1    jruoho /*******************************************************************************
     64       1.1    jruoho  *
     65       1.1    jruoho  * FUNCTION:    AnIsInternalMethod
     66       1.1    jruoho  *
     67       1.2  christos  * PARAMETERS:  Op                  - Current op
     68       1.1    jruoho  *
     69       1.1    jruoho  * RETURN:      Boolean
     70       1.1    jruoho  *
     71       1.1    jruoho  * DESCRIPTION: Check for an internal control method.
     72       1.1    jruoho  *
     73       1.1    jruoho  ******************************************************************************/
     74       1.1    jruoho 
     75       1.2  christos BOOLEAN
     76       1.1    jruoho AnIsInternalMethod (
     77       1.1    jruoho     ACPI_PARSE_OBJECT       *Op)
     78       1.1    jruoho {
     79       1.1    jruoho 
     80       1.5  christos     if ((!strcmp (Op->Asl.ExternalName, "\\_OSI")) ||
     81       1.5  christos         (!strcmp (Op->Asl.ExternalName, "_OSI")))
     82       1.1    jruoho     {
     83       1.1    jruoho         return (TRUE);
     84       1.1    jruoho     }
     85       1.1    jruoho 
     86       1.1    jruoho     return (FALSE);
     87       1.1    jruoho }
     88       1.1    jruoho 
     89       1.1    jruoho 
     90       1.1    jruoho /*******************************************************************************
     91       1.1    jruoho  *
     92       1.1    jruoho  * FUNCTION:    AnGetInternalMethodReturnType
     93       1.1    jruoho  *
     94       1.2  christos  * PARAMETERS:  Op                  - Current op
     95       1.1    jruoho  *
     96       1.1    jruoho  * RETURN:      Btype
     97       1.1    jruoho  *
     98       1.1    jruoho  * DESCRIPTION: Get the return type of an internal method
     99       1.1    jruoho  *
    100       1.1    jruoho  ******************************************************************************/
    101       1.1    jruoho 
    102       1.2  christos UINT32
    103       1.1    jruoho AnGetInternalMethodReturnType (
    104       1.1    jruoho     ACPI_PARSE_OBJECT       *Op)
    105       1.1    jruoho {
    106       1.1    jruoho 
    107       1.5  christos     if ((!strcmp (Op->Asl.ExternalName, "\\_OSI")) ||
    108       1.5  christos         (!strcmp (Op->Asl.ExternalName, "_OSI")))
    109       1.1    jruoho     {
    110       1.1    jruoho         return (ACPI_BTYPE_STRING);
    111       1.1    jruoho     }
    112       1.1    jruoho 
    113       1.1    jruoho     return (0);
    114       1.1    jruoho }
    115       1.1    jruoho 
    116       1.1    jruoho 
    117       1.1    jruoho /*******************************************************************************
    118       1.1    jruoho  *
    119       1.2  christos  * FUNCTION:    AnCheckId
    120       1.1    jruoho  *
    121       1.2  christos  * PARAMETERS:  Op                  - Current parse op
    122       1.2  christos  *              Type                - HID or CID
    123       1.1    jruoho  *
    124       1.2  christos  * RETURN:      None
    125       1.1    jruoho  *
    126       1.2  christos  * DESCRIPTION: Perform various checks on _HID and _CID strings. Only limited
    127       1.2  christos  *              checks can be performed on _CID strings.
    128       1.1    jruoho  *
    129       1.1    jruoho  ******************************************************************************/
    130       1.1    jruoho 
    131       1.2  christos void
    132       1.2  christos AnCheckId (
    133       1.2  christos     ACPI_PARSE_OBJECT       *Op,
    134       1.2  christos     ACPI_NAME               Type)
    135       1.1    jruoho {
    136       1.2  christos     UINT32                  i;
    137       1.2  christos     ACPI_SIZE               Length;
    138       1.1    jruoho 
    139       1.1    jruoho 
    140       1.2  christos     /* Only care about string versions of _HID/_CID (integers are legal) */
    141       1.1    jruoho 
    142       1.2  christos     if (Op->Asl.ParseOpcode != PARSEOP_STRING_LITERAL)
    143       1.1    jruoho     {
    144       1.2  christos         return;
    145       1.1    jruoho     }
    146       1.1    jruoho 
    147       1.2  christos     /* For both _HID and _CID, the string must be non-null */
    148       1.1    jruoho 
    149       1.2  christos     Length = strlen (Op->Asl.Value.String);
    150       1.2  christos     if (!Length)
    151       1.1    jruoho     {
    152       1.6  christos         AslError (ASL_ERROR, ASL_MSG_NULL_STRING, Op, NULL);
    153       1.2  christos         return;
    154       1.1    jruoho     }
    155       1.1    jruoho 
    156       1.2  christos     /*
    157       1.2  christos      * One of the things we want to catch here is the use of a leading
    158       1.2  christos      * asterisk in the string -- an odd construct that certain platform
    159       1.2  christos      * manufacturers are fond of. Technically, a leading asterisk is OK
    160       1.2  christos      * for _CID, but a valid use of this has not been seen.
    161       1.2  christos      */
    162       1.2  christos     if (*Op->Asl.Value.String == '*')
    163       1.1    jruoho     {
    164       1.2  christos         AslError (ASL_ERROR, ASL_MSG_LEADING_ASTERISK,
    165       1.2  christos             Op, Op->Asl.Value.String);
    166       1.2  christos         return;
    167       1.1    jruoho     }
    168       1.1    jruoho 
    169       1.2  christos     /* _CID strings are bus-specific, no more checks can be performed */
    170       1.1    jruoho 
    171       1.2  christos     if (Type == ASL_TYPE_CID)
    172       1.1    jruoho     {
    173       1.1    jruoho         return;
    174       1.1    jruoho     }
    175       1.1    jruoho 
    176       1.2  christos     /* For _HID, all characters must be alphanumeric */
    177       1.1    jruoho 
    178       1.2  christos     for (i = 0; Op->Asl.Value.String[i]; i++)
    179       1.1    jruoho     {
    180       1.2  christos         if (!isalnum ((int) Op->Asl.Value.String[i]))
    181       1.1    jruoho         {
    182       1.2  christos             AslError (ASL_ERROR, ASL_MSG_ALPHANUMERIC_STRING,
    183       1.2  christos                 Op, Op->Asl.Value.String);
    184       1.2  christos             return;
    185       1.1    jruoho         }
    186       1.1    jruoho     }
    187       1.1    jruoho 
    188       1.2  christos     /*
    189       1.2  christos      * _HID String must be one of these forms:
    190       1.2  christos      *
    191       1.2  christos      * "AAA####"    A is an uppercase letter and # is a hex digit
    192       1.2  christos      * "ACPI####"   # is a hex digit
    193       1.2  christos      * "NNNN####"   N is an uppercase letter or decimal digit (0-9)
    194       1.2  christos      *              # is a hex digit (ACPI 5.0)
    195       1.2  christos      */
    196       1.2  christos     if ((Length < 7) || (Length > 8))
    197       1.1    jruoho     {
    198       1.2  christos         AslError (ASL_ERROR, ASL_MSG_HID_LENGTH,
    199       1.2  christos             Op, Op->Asl.Value.String);
    200       1.2  christos         return;
    201       1.1    jruoho     }
    202       1.1    jruoho 
    203       1.6  christos     /* _HID Length is valid (7 or 8), now check prefix (first 3 or 4 chars) */
    204       1.1    jruoho 
    205       1.2  christos     if (Length == 7)
    206       1.1    jruoho     {
    207       1.2  christos         /* AAA####: Ensure the alphabetic prefix is all uppercase */
    208       1.1    jruoho 
    209       1.2  christos         for (i = 0; i < 3; i++)
    210       1.1    jruoho         {
    211       1.2  christos             if (!isupper ((int) Op->Asl.Value.String[i]))
    212       1.1    jruoho             {
    213       1.2  christos                 AslError (ASL_ERROR, ASL_MSG_UPPER_CASE,
    214       1.2  christos                     Op, &Op->Asl.Value.String[i]);
    215       1.2  christos                 return;
    216       1.1    jruoho             }
    217       1.1    jruoho         }
    218       1.1    jruoho     }
    219       1.2  christos     else /* Length == 8 */
    220       1.1    jruoho     {
    221       1.1    jruoho         /*
    222       1.2  christos          * ACPI#### or NNNN####:
    223       1.2  christos          * Ensure the prefix contains only uppercase alpha or decimal digits
    224       1.1    jruoho          */
    225       1.2  christos         for (i = 0; i < 4; i++)
    226       1.1    jruoho         {
    227       1.2  christos             if (!isupper ((int) Op->Asl.Value.String[i]) &&
    228       1.2  christos                 !isdigit ((int) Op->Asl.Value.String[i]))
    229       1.2  christos             {
    230       1.2  christos                 AslError (ASL_ERROR, ASL_MSG_HID_PREFIX,
    231       1.2  christos                     Op, &Op->Asl.Value.String[i]);
    232       1.2  christos                 return;
    233       1.2  christos             }
    234       1.1    jruoho         }
    235       1.2  christos     }
    236       1.1    jruoho 
    237       1.2  christos     /* Remaining characters (suffix) must be hex digits */
    238       1.1    jruoho 
    239       1.2  christos     for (; i < Length; i++)
    240       1.2  christos     {
    241       1.2  christos         if (!isxdigit ((int) Op->Asl.Value.String[i]))
    242       1.1    jruoho         {
    243       1.6  christos             AslError (ASL_ERROR, ASL_MSG_HID_SUFFIX,
    244       1.6  christos                 Op, &Op->Asl.Value.String[i]);
    245       1.2  christos             break;
    246       1.1    jruoho         }
    247       1.1    jruoho     }
    248       1.1    jruoho }
    249       1.1    jruoho 
    250       1.1    jruoho 
    251       1.1    jruoho /*******************************************************************************
    252       1.1    jruoho  *
    253       1.2  christos  * FUNCTION:    AnLastStatementIsReturn
    254       1.1    jruoho  *
    255       1.2  christos  * PARAMETERS:  Op                  - A method parse node
    256       1.1    jruoho  *
    257       1.2  christos  * RETURN:      TRUE if last statement is an ASL RETURN. False otherwise
    258       1.1    jruoho  *
    259       1.2  christos  * DESCRIPTION: Walk down the list of top level statements within a method
    260       1.2  christos  *              to find the last one. Check if that last statement is in
    261       1.2  christos  *              fact a RETURN statement.
    262       1.1    jruoho  *
    263       1.1    jruoho  ******************************************************************************/
    264       1.1    jruoho 
    265       1.2  christos BOOLEAN
    266       1.2  christos AnLastStatementIsReturn (
    267       1.2  christos     ACPI_PARSE_OBJECT       *Op)
    268       1.1    jruoho {
    269       1.2  christos     ACPI_PARSE_OBJECT       *Next;
    270       1.1    jruoho 
    271       1.1    jruoho 
    272       1.2  christos     /* Check if last statement is a return */
    273       1.1    jruoho 
    274       1.2  christos     Next = ASL_GET_CHILD_NODE (Op);
    275       1.2  christos     while (Next)
    276       1.1    jruoho     {
    277       1.2  christos         if ((!Next->Asl.Next) &&
    278       1.2  christos             (Next->Asl.ParseOpcode == PARSEOP_RETURN))
    279       1.1    jruoho         {
    280       1.2  christos             return (TRUE);
    281       1.1    jruoho         }
    282       1.1    jruoho 
    283       1.2  christos         Next = ASL_GET_PEER_NODE (Next);
    284       1.1    jruoho     }
    285       1.1    jruoho 
    286       1.2  christos     return (FALSE);
    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:    AnCheckMethodReturnValue
    293       1.1    jruoho  *
    294       1.1    jruoho  * PARAMETERS:  Op                  - Parent
    295       1.1    jruoho  *              OpInfo              - Parent info
    296       1.1    jruoho  *              ArgOp               - Method invocation op
    297       1.1    jruoho  *              RequiredBtypes      - What caller requires
    298       1.1    jruoho  *              ThisNodeBtype       - What this node returns (if anything)
    299       1.1    jruoho  *
    300       1.1    jruoho  * RETURN:      None
    301       1.1    jruoho  *
    302       1.1    jruoho  * DESCRIPTION: Check a method invocation for 1) A return value and if it does
    303       1.1    jruoho  *              in fact return a value, 2) check the type of the return value.
    304       1.1    jruoho  *
    305       1.1    jruoho  ******************************************************************************/
    306       1.1    jruoho 
    307       1.2  christos void
    308       1.1    jruoho AnCheckMethodReturnValue (
    309       1.1    jruoho     ACPI_PARSE_OBJECT       *Op,
    310       1.1    jruoho     const ACPI_OPCODE_INFO  *OpInfo,
    311       1.1    jruoho     ACPI_PARSE_OBJECT       *ArgOp,
    312       1.1    jruoho     UINT32                  RequiredBtypes,
    313       1.1    jruoho     UINT32                  ThisNodeBtype)
    314       1.1    jruoho {
    315       1.1    jruoho     ACPI_PARSE_OBJECT       *OwningOp;
    316       1.1    jruoho     ACPI_NAMESPACE_NODE     *Node;
    317      1.14  christos     char                    *ExternalPath;
    318       1.1    jruoho 
    319       1.1    jruoho 
    320       1.1    jruoho     Node = ArgOp->Asl.Node;
    321       1.1    jruoho 
    322       1.7  christos     if (!Node)
    323       1.7  christos     {
    324       1.7  christos         /* No error message, this can happen and is OK */
    325       1.7  christos 
    326       1.7  christos         return;
    327       1.7  christos     }
    328       1.1    jruoho 
    329       1.1    jruoho     /* Examine the parent op of this method */
    330       1.1    jruoho 
    331       1.1    jruoho     OwningOp = Node->Op;
    332      1.14  christos     ExternalPath = AcpiNsGetNormalizedPathname (Node, TRUE);
    333      1.14  christos 
    334       1.9  christos     if (OwningOp->Asl.CompileFlags & OP_METHOD_NO_RETVAL)
    335       1.1    jruoho     {
    336       1.1    jruoho         /* Method NEVER returns a value */
    337       1.1    jruoho 
    338      1.14  christos         AslError (ASL_ERROR, ASL_MSG_NO_RETVAL, Op, ExternalPath);
    339       1.1    jruoho     }
    340       1.9  christos     else if (OwningOp->Asl.CompileFlags & OP_METHOD_SOME_NO_RETVAL)
    341       1.1    jruoho     {
    342       1.1    jruoho         /* Method SOMETIMES returns a value, SOMETIMES not */
    343       1.1    jruoho 
    344      1.14  christos         AslError (ASL_WARNING, ASL_MSG_SOME_NO_RETVAL, Op, ExternalPath);
    345       1.1    jruoho     }
    346       1.1    jruoho     else if (!(ThisNodeBtype & RequiredBtypes))
    347       1.1    jruoho     {
    348       1.1    jruoho         /* Method returns a value, but the type is wrong */
    349       1.1    jruoho 
    350      1.11  christos         AnFormatBtype (AslGbl_StringBuffer, ThisNodeBtype);
    351      1.11  christos         AnFormatBtype (AslGbl_StringBuffer2, RequiredBtypes);
    352       1.1    jruoho 
    353       1.1    jruoho         /*
    354       1.1    jruoho          * The case where the method does not return any value at all
    355       1.1    jruoho          * was already handled in the namespace cross reference
    356       1.1    jruoho          * -- Only issue an error if the method in fact returns a value,
    357       1.1    jruoho          * but it is of the wrong type
    358       1.1    jruoho          */
    359       1.1    jruoho         if (ThisNodeBtype != 0)
    360       1.1    jruoho         {
    361      1.11  christos             snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer),
    362       1.1    jruoho                 "Method returns [%s], %s operator requires [%s]",
    363      1.11  christos                 AslGbl_StringBuffer, OpInfo->Name, AslGbl_StringBuffer2);
    364       1.1    jruoho 
    365  1.14.4.1   thorpej             AslError (ASL_WARNING, ASL_MSG_INVALID_TYPE, ArgOp, AslGbl_MsgBuffer);
    366       1.1    jruoho         }
    367       1.1    jruoho     }
    368      1.14  christos 
    369      1.14  christos     if (ExternalPath)
    370      1.14  christos     {
    371      1.14  christos         ACPI_FREE (ExternalPath);
    372      1.14  christos     }
    373       1.1    jruoho }
    374       1.1    jruoho 
    375       1.1    jruoho 
    376       1.1    jruoho /*******************************************************************************
    377       1.1    jruoho  *
    378       1.1    jruoho  * FUNCTION:    AnIsResultUsed
    379       1.1    jruoho  *
    380       1.2  christos  * PARAMETERS:  Op                  - Parent op for the operator
    381       1.1    jruoho  *
    382       1.1    jruoho  * RETURN:      TRUE if result from this operation is actually consumed
    383       1.1    jruoho  *
    384       1.1    jruoho  * DESCRIPTION: Determine if the function result value from an operator is
    385       1.1    jruoho  *              used.
    386       1.1    jruoho  *
    387       1.1    jruoho  ******************************************************************************/
    388       1.1    jruoho 
    389       1.1    jruoho BOOLEAN
    390       1.1    jruoho AnIsResultUsed (
    391       1.1    jruoho     ACPI_PARSE_OBJECT       *Op)
    392       1.1    jruoho {
    393       1.1    jruoho     ACPI_PARSE_OBJECT       *Parent;
    394       1.1    jruoho 
    395       1.1    jruoho 
    396       1.1    jruoho     switch (Op->Asl.ParseOpcode)
    397       1.1    jruoho     {
    398       1.1    jruoho     case PARSEOP_INCREMENT:
    399       1.1    jruoho     case PARSEOP_DECREMENT:
    400       1.1    jruoho 
    401       1.1    jruoho         /* These are standalone operators, no return value */
    402       1.1    jruoho 
    403       1.1    jruoho         return (TRUE);
    404       1.1    jruoho 
    405       1.1    jruoho     default:
    406       1.2  christos 
    407       1.1    jruoho         break;
    408       1.1    jruoho     }
    409       1.1    jruoho 
    410       1.1    jruoho     /* Examine parent to determine if the return value is used */
    411       1.1    jruoho 
    412       1.1    jruoho     Parent = Op->Asl.Parent;
    413       1.1    jruoho     switch (Parent->Asl.ParseOpcode)
    414       1.1    jruoho     {
    415       1.1    jruoho     /* If/While - check if the operator is the predicate */
    416       1.1    jruoho 
    417       1.1    jruoho     case PARSEOP_IF:
    418       1.1    jruoho     case PARSEOP_WHILE:
    419       1.1    jruoho 
    420       1.1    jruoho         /* First child is the predicate */
    421       1.1    jruoho 
    422       1.1    jruoho         if (Parent->Asl.Child == Op)
    423       1.1    jruoho         {
    424       1.1    jruoho             return (TRUE);
    425       1.1    jruoho         }
    426       1.6  christos 
    427       1.1    jruoho         return (FALSE);
    428       1.1    jruoho 
    429       1.1    jruoho     /* Not used if one of these is the parent */
    430       1.1    jruoho 
    431       1.1    jruoho     case PARSEOP_METHOD:
    432       1.6  christos     case PARSEOP_DEFINITION_BLOCK:
    433       1.1    jruoho     case PARSEOP_ELSE:
    434       1.1    jruoho 
    435       1.1    jruoho         return (FALSE);
    436       1.1    jruoho 
    437       1.1    jruoho     default:
    438       1.2  christos 
    439       1.1    jruoho         /* Any other type of parent means that the result is used */
    440       1.1    jruoho 
    441       1.1    jruoho         return (TRUE);
    442       1.1    jruoho     }
    443       1.1    jruoho }
    444       1.1    jruoho 
    445       1.1    jruoho 
    446       1.1    jruoho /*******************************************************************************
    447       1.1    jruoho  *
    448       1.2  christos  * FUNCTION:    ApCheckForGpeNameConflict
    449       1.1    jruoho  *
    450       1.2  christos  * PARAMETERS:  Op                  - Current parse op
    451       1.1    jruoho  *
    452       1.2  christos  * RETURN:      None
    453       1.1    jruoho  *
    454       1.2  christos  * DESCRIPTION: Check for a conflict between GPE names within this scope.
    455       1.2  christos  *              Conflict means two GPE names with the same GPE number, but
    456       1.2  christos  *              different types -- such as _L1C and _E1C.
    457       1.1    jruoho  *
    458       1.1    jruoho  ******************************************************************************/
    459       1.1    jruoho 
    460       1.2  christos void
    461       1.2  christos ApCheckForGpeNameConflict (
    462       1.2  christos     ACPI_PARSE_OBJECT       *Op)
    463       1.1    jruoho {
    464       1.2  christos     ACPI_PARSE_OBJECT       *NextOp;
    465       1.2  christos     UINT32                  GpeNumber;
    466      1.12  christos     char                    Name[ACPI_NAMESEG_SIZE + 1];
    467      1.12  christos     char                    Target[ACPI_NAMESEG_SIZE];
    468       1.1    jruoho 
    469       1.1    jruoho 
    470       1.2  christos     /* Need a null-terminated string version of NameSeg */
    471       1.2  christos 
    472      1.13  christos     ACPI_MOVE_32_TO_32 (Name, Op->Asl.NameSeg);
    473      1.12  christos     Name[ACPI_NAMESEG_SIZE] = 0;
    474       1.1    jruoho 
    475       1.1    jruoho     /*
    476       1.2  christos      * For a GPE method:
    477       1.2  christos      * 1st char must be underscore
    478       1.2  christos      * 2nd char must be L or E
    479       1.2  christos      * 3rd/4th chars must be a hex number
    480       1.1    jruoho      */
    481       1.2  christos     if ((Name[0] != '_') ||
    482       1.2  christos        ((Name[1] != 'L') && (Name[1] != 'E')))
    483       1.1    jruoho     {
    484       1.2  christos         return;
    485       1.2  christos     }
    486       1.1    jruoho 
    487       1.2  christos     /* Verify 3rd/4th chars are a valid hex value */
    488       1.1    jruoho 
    489       1.5  christos     GpeNumber = strtoul (&Name[2], NULL, 16);
    490       1.2  christos     if (GpeNumber == ACPI_UINT32_MAX)
    491       1.2  christos     {
    492       1.2  christos         return;
    493       1.1    jruoho     }
    494       1.1    jruoho 
    495       1.1    jruoho     /*
    496       1.2  christos      * We are now sure we have an _Lxx or _Exx.
    497       1.2  christos      * Create the target name that would cause collision (Flip E/L)
    498       1.1    jruoho      */
    499       1.2  christos     ACPI_MOVE_32_TO_32 (Target, Name);
    500       1.1    jruoho 
    501       1.2  christos     /* Inject opposite letter ("L" versus "E") */
    502       1.1    jruoho 
    503       1.2  christos     if (Name[1] == 'L')
    504       1.2  christos     {
    505       1.2  christos         Target[1] = 'E';
    506       1.2  christos     }
    507       1.2  christos     else /* Name[1] == 'E' */
    508       1.2  christos     {
    509       1.2  christos         Target[1] = 'L';
    510       1.2  christos     }
    511       1.1    jruoho 
    512       1.2  christos     /* Search all peers (objects within this scope) for target match */
    513       1.1    jruoho 
    514       1.2  christos     NextOp = Op->Asl.Next;
    515       1.2  christos     while (NextOp)
    516       1.2  christos     {
    517       1.1    jruoho         /*
    518       1.2  christos          * We mostly care about methods, but check Name() constructs also,
    519       1.2  christos          * even though they will get another error for not being a method.
    520       1.2  christos          * All GPE names must be defined as control methods.
    521       1.1    jruoho          */
    522       1.2  christos         if ((NextOp->Asl.ParseOpcode == PARSEOP_METHOD) ||
    523       1.2  christos             (NextOp->Asl.ParseOpcode == PARSEOP_NAME))
    524       1.1    jruoho         {
    525      1.12  christos             if (ACPI_COMPARE_NAMESEG (Target, NextOp->Asl.NameSeg))
    526       1.2  christos             {
    527       1.2  christos                 /* Found both _Exy and _Lxy in the same scope, error */
    528       1.1    jruoho 
    529       1.2  christos                 AslError (ASL_ERROR, ASL_MSG_GPE_NAME_CONFLICT, NextOp,
    530       1.2  christos                     Name);
    531       1.2  christos                 return;
    532       1.2  christos             }
    533       1.1    jruoho         }
    534       1.1    jruoho 
    535       1.2  christos         NextOp = NextOp->Asl.Next;
    536       1.1    jruoho     }
    537       1.1    jruoho 
    538       1.2  christos     /* OK, no conflict found */
    539       1.2  christos 
    540       1.2  christos     return;
    541       1.1    jruoho }
    542       1.1    jruoho 
    543       1.1    jruoho 
    544       1.1    jruoho /*******************************************************************************
    545       1.1    jruoho  *
    546       1.2  christos  * FUNCTION:    ApCheckRegMethod
    547       1.1    jruoho  *
    548       1.2  christos  * PARAMETERS:  Op                  - Current parse op
    549       1.1    jruoho  *
    550       1.2  christos  * RETURN:      None
    551       1.1    jruoho  *
    552       1.2  christos  * DESCRIPTION: Ensure that a _REG method has a corresponding Operation
    553       1.2  christos  *              Region declaration within the same scope. Note: _REG is defined
    554       1.2  christos  *              to have two arguments and must therefore be defined as a
    555       1.2  christos  *              control method.
    556       1.1    jruoho  *
    557       1.1    jruoho  ******************************************************************************/
    558       1.1    jruoho 
    559       1.2  christos void
    560       1.2  christos ApCheckRegMethod (
    561       1.2  christos     ACPI_PARSE_OBJECT       *Op)
    562       1.1    jruoho {
    563       1.2  christos     ACPI_PARSE_OBJECT       *Next;
    564       1.2  christos     ACPI_PARSE_OBJECT       *Parent;
    565       1.1    jruoho 
    566       1.1    jruoho 
    567       1.2  christos     /* We are only interested in _REG methods */
    568       1.1    jruoho 
    569      1.12  christos     if (!ACPI_COMPARE_NAMESEG (METHOD_NAME__REG, &Op->Asl.NameSeg))
    570       1.2  christos     {
    571       1.2  christos         return;
    572       1.2  christos     }
    573       1.1    jruoho 
    574       1.2  christos     /* Get the start of the current scope */
    575       1.1    jruoho 
    576       1.2  christos     Parent = Op->Asl.Parent;
    577       1.2  christos     Next = Parent->Asl.Child;
    578       1.1    jruoho 
    579       1.2  christos     /* Search entire scope for an operation region declaration */
    580       1.1    jruoho 
    581       1.2  christos     while (Next)
    582       1.1    jruoho     {
    583       1.2  christos         if (Next->Asl.ParseOpcode == PARSEOP_OPERATIONREGION)
    584       1.2  christos         {
    585       1.2  christos             return; /* Found region, OK */
    586       1.2  christos         }
    587       1.2  christos 
    588       1.2  christos         Next = Next->Asl.Next;
    589       1.1    jruoho     }
    590       1.1    jruoho 
    591       1.2  christos     /* No region found, issue warning */
    592       1.1    jruoho 
    593       1.2  christos     AslError (ASL_WARNING, ASL_MSG_NO_REGION, Op, NULL);
    594       1.1    jruoho }
    595       1.3  christos 
    596       1.3  christos 
    597       1.3  christos /*******************************************************************************
    598       1.3  christos  *
    599       1.7  christos  * FUNCTION:    ApFindNameInDeviceTree
    600       1.7  christos  *
    601       1.7  christos  * PARAMETERS:  Name                - Name to search for
    602       1.7  christos  *              Op                  - Current parse op
    603       1.7  christos  *
    604       1.7  christos  * RETURN:      TRUE if name found in the same scope as Op.
    605       1.7  christos  *
    606       1.7  christos  * DESCRIPTION: Determine if a name appears in the same scope as Op, as either
    607       1.7  christos  *              a Method() or a Name(). "Same scope" can mean under an If or
    608       1.7  christos  *              Else statement.
    609       1.7  christos  *
    610       1.7  christos  * NOTE: Detects _HID/_ADR in this type of construct (legal in ACPI 6.1+)
    611       1.7  christos  *
    612       1.7  christos  * Scope (\_SB.PCI0)
    613       1.7  christos  * {
    614       1.7  christos  *     Device (I2C0)
    615       1.7  christos  *     {
    616       1.7  christos  *         If (SMD0 != 4) {
    617       1.7  christos  *             Name (_HID, "INT3442")
    618       1.7  christos  *         } Else {
    619       1.7  christos  *             Name (_ADR, 0x400)
    620       1.7  christos  *         }
    621       1.7  christos  *     }
    622       1.7  christos  * }
    623       1.7  christos  ******************************************************************************/
    624       1.7  christos 
    625       1.7  christos BOOLEAN
    626       1.7  christos ApFindNameInDeviceTree (
    627       1.7  christos     char                    *Name,
    628       1.7  christos     ACPI_PARSE_OBJECT       *Op)
    629       1.7  christos {
    630       1.7  christos     ACPI_STATUS             Status;
    631       1.7  christos 
    632       1.7  christos 
    633       1.7  christos     Status = TrWalkParseTree (Op, ASL_WALK_VISIT_DOWNWARD,
    634       1.7  christos         ApDeviceSubtreeWalk, NULL, Name);
    635       1.7  christos 
    636       1.7  christos     if (Status == AE_CTRL_TRUE)
    637       1.7  christos     {
    638       1.7  christos         return (TRUE);  /* Found a match */
    639       1.7  christos     }
    640       1.7  christos 
    641       1.7  christos     return (FALSE);
    642       1.7  christos }
    643       1.7  christos 
    644       1.7  christos 
    645       1.7  christos /* Callback function for interface above */
    646       1.7  christos 
    647       1.7  christos static ACPI_STATUS
    648       1.7  christos ApDeviceSubtreeWalk (
    649       1.7  christos     ACPI_PARSE_OBJECT       *Op,
    650       1.7  christos     UINT32                  Level,
    651       1.7  christos     void                    *Context)
    652       1.7  christos {
    653       1.7  christos     char                    *Name = ACPI_CAST_PTR (char, Context);
    654       1.7  christos 
    655       1.7  christos 
    656       1.7  christos     switch (Op->Asl.ParseOpcode)
    657       1.7  christos     {
    658       1.7  christos     case PARSEOP_DEVICE:
    659       1.7  christos 
    660       1.7  christos         /* Level 0 is the starting device, ignore it */
    661       1.7  christos 
    662       1.7  christos         if (Level > 0)
    663       1.7  christos         {
    664       1.7  christos             /* Ignore sub-devices */
    665       1.7  christos 
    666       1.7  christos             return (AE_CTRL_DEPTH);
    667       1.7  christos         }
    668       1.7  christos         break;
    669       1.7  christos 
    670       1.7  christos     case PARSEOP_NAME:
    671       1.7  christos     case PARSEOP_METHOD:
    672       1.7  christos 
    673       1.7  christos         /* These are what we are looking for */
    674       1.7  christos 
    675      1.12  christos         if (ACPI_COMPARE_NAMESEG (Name, Op->Asl.NameSeg))
    676       1.7  christos         {
    677       1.7  christos             return (AE_CTRL_TRUE);
    678       1.7  christos         }
    679       1.7  christos         return (AE_CTRL_DEPTH);
    680       1.7  christos 
    681       1.7  christos     case PARSEOP_SCOPE:
    682       1.7  christos     case PARSEOP_FIELD:
    683       1.7  christos     case PARSEOP_OPERATIONREGION:
    684       1.7  christos 
    685       1.7  christos         /*
    686       1.7  christos          * We want to ignore these, because either they can be large
    687       1.7  christos          * subtrees or open a scope to somewhere else.
    688       1.7  christos          */
    689       1.7  christos         return (AE_CTRL_DEPTH);
    690       1.7  christos 
    691       1.7  christos     default:
    692       1.7  christos         break;
    693       1.7  christos     }
    694       1.7  christos 
    695       1.7  christos     return (AE_OK);
    696       1.7  christos }
    697       1.7  christos 
    698       1.7  christos 
    699       1.7  christos /*******************************************************************************
    700       1.7  christos  *
    701       1.3  christos  * FUNCTION:    ApFindNameInScope
    702       1.3  christos  *
    703       1.3  christos  * PARAMETERS:  Name                - Name to search for
    704       1.3  christos  *              Op                  - Current parse op
    705       1.3  christos  *
    706       1.3  christos  * RETURN:      TRUE if name found in the same scope as Op.
    707       1.3  christos  *
    708       1.3  christos  * DESCRIPTION: Determine if a name appears in the same scope as Op, as either
    709       1.3  christos  *              a Method() or a Name().
    710       1.3  christos  *
    711       1.3  christos  ******************************************************************************/
    712       1.3  christos 
    713       1.3  christos BOOLEAN
    714       1.3  christos ApFindNameInScope (
    715       1.3  christos     char                    *Name,
    716       1.3  christos     ACPI_PARSE_OBJECT       *Op)
    717       1.3  christos {
    718       1.3  christos     ACPI_PARSE_OBJECT       *Next;
    719       1.3  christos     ACPI_PARSE_OBJECT       *Parent;
    720       1.3  christos 
    721       1.3  christos 
    722       1.3  christos     /* Get the start of the current scope */
    723       1.3  christos 
    724       1.3  christos     Parent = Op->Asl.Parent;
    725       1.3  christos     Next = Parent->Asl.Child;
    726       1.3  christos 
    727       1.3  christos     /* Search entire scope for a match to the name */
    728       1.3  christos 
    729       1.3  christos     while (Next)
    730       1.3  christos     {
    731       1.3  christos         if ((Next->Asl.ParseOpcode == PARSEOP_METHOD) ||
    732       1.3  christos             (Next->Asl.ParseOpcode == PARSEOP_NAME))
    733       1.3  christos         {
    734      1.12  christos             if (ACPI_COMPARE_NAMESEG (Name, Next->Asl.NameSeg))
    735       1.3  christos             {
    736       1.3  christos                 return (TRUE);
    737       1.3  christos             }
    738       1.3  christos         }
    739       1.3  christos 
    740       1.3  christos         Next = Next->Asl.Next;
    741       1.3  christos     }
    742       1.3  christos 
    743       1.3  christos     return (FALSE);
    744       1.3  christos }
    745